Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/rooms/RoomState.java

22 lines
291 B
Java
Raw Normal View History

2018-07-06 15:30:00 +02:00
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;
}
}