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

27 lines
596 B
Java
Raw Normal View History

2018-07-06 15:30:00 +02:00
package com.eu.habbo.habbohotel.modtool;
import com.eu.habbo.messages.ServerMessage;
public enum ModToolChatRecordDataContext
{
ROOM_NAME("roomName", 2),
ROOM_ID("roomId", 1),
GROUP_ID("groupId", 1),
THREAD_ID("threadId", 1),
MESSAGE_ID("messageId", 1);
public final String key;
public final int type;
ModToolChatRecordDataContext(String key, int type)
{
this.key = key;
this.type = type;
}
public void append(final ServerMessage message)
{
message.appendString(this.key);
message.appendByte(this.type);
}
}