16 lines
241 B
Java
16 lines
241 B
Java
package lol.pyr.znpcsplus.util;
|
|
|
|
public enum CreeperState {
|
|
IDLE(-1),
|
|
FUSE(1);
|
|
|
|
private final int state;
|
|
|
|
CreeperState(int state) {
|
|
this.state = state;
|
|
}
|
|
|
|
public int getState() {
|
|
return state;
|
|
}
|
|
}
|