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

15 lines
220 B
Java
Raw Normal View History

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