character job data
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit

This commit is contained in:
austin 2025-05-28 15:59:02 -04:00
parent 49de88f487
commit 8e7694c598
2 changed files with 22 additions and 0 deletions

View File

@ -2024,6 +2024,7 @@ Fix upright tree continuously re-enabling bodies
Fix server collision resolution never triggering for second body
Fix macro structure rotation generation
Improvement to building placement math in TownLayout
Scaffold character job data

View File

@ -0,0 +1,21 @@
package electrosphere.data.macro;
/**
* A job that a character can have
*/
public class CharaJob {
/**
* Name of the job
*/
private String name;
/**
* Gets the name of the job
* @return The name of the job
*/
public String getName() {
return name;
}
}