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

22 lines
293 B
Java
Raw Normal View History

2018-07-06 15:30:00 +02:00
package com.eu.habbo.habbohotel.rooms;
public enum RoomUnitType
{
USER(1),
BOT(4),
PET(2),
UNKNOWN(3);
private final int typeId;
RoomUnitType(int typeId)
{
this.typeId = typeId;
}
public int getTypeId()
{
return this.typeId;
}
}