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

import com.google.gson.annotations.SerializedName;
import org.jetbrains.annotations.NotNull;

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

}