Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/guides/GuideChatMessage.java

16 lines
351 B
Java
Raw Normal View History

2018-07-06 15:30:00 +02:00
package com.eu.habbo.habbohotel.guides;
public class GuideChatMessage
{
public final int userId;
public final String message;
public final int timestamp;
public GuideChatMessage(int userId, String message, int timestamp)
{
this.userId = userId;
this.message = message;
this.timestamp = timestamp;
}
}