Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/rooms/RoomState.java
2019-05-26 21:15:26 +03:00

19 lines
283 B
Java

package com.eu.habbo.habbohotel.rooms;
public enum RoomState {
OPEN(0),
LOCKED(1),
PASSWORD(2),
INVISIBLE(3);
private final int state;
RoomState(int state) {
this.state = state;
}
public int getState() {
return this.state;
}
}