Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/rooms/RoomUnitType.java
2019-05-26 21:15:26 +03:00

19 lines
285 B
Java

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;
}
}