19 lines
283 B
Java
Raw Normal View History

2018-07-06 13:30:00 +00:00
package com.eu.habbo.habbohotel.rooms;
2019-05-26 21:14:53 +03:00
public enum RoomState {
2018-07-06 13:30:00 +00:00
OPEN(0),
LOCKED(1),
PASSWORD(2),
INVISIBLE(3);
private final int state;
2019-05-26 21:14:53 +03:00
RoomState(int state) {
2018-07-06 13:30:00 +00:00
this.state = state;
}
2019-05-26 21:14:53 +03:00
public int getState() {
2018-07-06 13:30:00 +00:00
return this.state;
}
}