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

14 lines
347 B
Java
Raw Normal View History

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