Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/modtool/ModToolChatlogType.java

13 lines
216 B
Java
Raw Normal View History

2018-07-06 15:30:00 +02:00
package com.eu.habbo.habbohotel.modtool;
2019-05-26 20:14:53 +02:00
public enum ModToolChatlogType {
2018-07-06 15:30:00 +02:00
BOT_PET(0),
YELLOW(1),
BLUE(2);
public final int type;
2019-05-26 20:14:53 +02:00
ModToolChatlogType(int type) {
2018-07-06 15:30:00 +02:00
this.type = type;
}
}