Kittens Posted February 22, 2014 Posted February 22, 2014 you dont know difference between a class and a enum. remove scripter rank 1
Administrator Maldesto Posted February 22, 2014 Author Administrator Posted February 22, 2014 you dont know difference between a class and a enum. remove scripter rank public enum Direction { ENUM_UP(0, -1), ENUM_DOWN(0, 1), ENUM_RIGHT(1, 0), ENUM_LEFT(-1, 0); private int x; private int y; private Direction(int x, int y){ this.x = x; this.y = y; } public int getEnumX(){ return x; } public int getEnumY(){ return y; } } public class Direction{ public static final Direction UP = new Direction(0, -1) ; public static final Direction DOWN = new Direction(0, 1) ; public static final Direction LEFT = new Direction(-1, 0) ; public static final Direction RIGHT = new Direction(1, 0) ; private int x ; private int y ; private Direction(int x, int y){ this.x = x ; this.y = y ; } public int getX(){ return x; } public int getY(){ return y; } } 1
Kittens Posted February 22, 2014 Posted February 22, 2014 public enum Direction { ENUM_UP(0, -1), ENUM_DOWN(0, 1), ENUM_RIGHT(1, 0), ENUM_LEFT(-1, 0); private int x; private int y; private Direction(int x, int y){ this.x = x; this.y = y; } public int getEnumX(){ return x; } public int getEnumY(){ return y; } } public class Direction{ public static final Direction UP = new Direction(0, -1) ; public static final Direction DOWN = new Direction(0, 1) ; public static final Direction LEFT = new Direction(-1, 0) ; public static final Direction RIGHT = new Direction(1, 0) ; private int x ; private int y ; private Direction(int x, int y){ this.x = x ; this.y = y ; } public int getX(){ return x; } public int getY(){ return y; } } SUCH WOW I expect you to write a script then.
Han Posted February 22, 2014 Posted February 22, 2014 SUCH WOW I expect you to write a script then. I'd love to see this actually.
RoomScape Posted February 22, 2014 Posted February 22, 2014 No trial mod pip? PeasantJust goes to show you that it's being removed.