aboutsummaryrefslogtreecommitdiff
path: root/mod/src/main/java/moe/ymc/acron/s2c/event/EventPlayerJoined.java
blob: 408680b651ca415fd3ef825a8c85c78482d318de (plain)
1
2
3
4
5
6
7
8
9
10
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 EventPlayerJoined(@SerializedName("player") @NotNull Entity player)
        implements Event {
}