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

19 lines
285 B
Java
Raw Normal View History

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