aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/moe/ymc/acron/s2c/event/EventPlayerMessage.java
blob: 27694935b8637ffc5d98febde096f52fdea48709 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package moe.ymc.acron.s2c.event;

import com.google.gson.annotations.SerializedName;
import moe.ymc.acron.s2c.Entity;
import moe.ymc.acron.s2c.Event;
import org.jetbrains.annotations.NotNull;

public record EventPlayerMessage(@SerializedName("player") @NotNull Entity player,
                                 @SerializedName("text") @NotNull String text)
        implements Event {

}