Utils.java 274 B

1234567891011121314151617181920
  1. package xyz.spaceio.customoregen;
  2. public class Utils {
  3. public static enum Material113{
  4. STATIONARY_LAVA(10),
  5. STATIONARY_WATER(9),
  6. WATER(8),
  7. LAVA(11),
  8. AIR(0);
  9. int id;
  10. Material113(int id) {
  11. this.id = id;
  12. }
  13. int getID() {
  14. return this.id;
  15. }
  16. }
  17. }