character job data
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit
This commit is contained in:
parent
49de88f487
commit
8e7694c598
@ -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
|
||||
|
||||
|
||||
|
||||
|
||||
21
src/main/java/electrosphere/data/macro/CharaJob.java
Normal file
21
src/main/java/electrosphere/data/macro/CharaJob.java
Normal 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;
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user