mirror of
https://github.com/billsonnn/nitro-react.git
synced 2024-11-23 22:40:50 +01:00
11 lines
356 B
TypeScript
11 lines
356 B
TypeScript
export class BuilderFurniPlaceableStatus
|
|
{
|
|
public static OKAY: number = 0;
|
|
public static MISSING_OFFER: number = 1;
|
|
public static FURNI_LIMIT_REACHED: number = 2;
|
|
public static NOT_IN_ROOM: number = 3;
|
|
public static NOT_ROOM_OWNER: number = 4;
|
|
public static GUILD_ROOM: number = 5;
|
|
public static VISITORS_IN_ROOM: number = 6;
|
|
}
|