mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2025-03-04 09:22:36 +01:00
20 lines
133 B
Java
20 lines
133 B
Java
package com.eu.habbo.habbohotel.rooms;
|
|
|
|
|
|
public enum RoomTileState {
|
|
|
|
OPEN,
|
|
|
|
|
|
BLOCKED,
|
|
|
|
|
|
INVALID,
|
|
|
|
|
|
SIT,
|
|
|
|
|
|
LAY
|
|
}
|