mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2025-03-04 17:32:39 +01:00
19 lines
283 B
Java
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;
|
|
}
|
|
}
|