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

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

public record EventPlayerJoined(@SerializedName("player") @NotNull Entity player)
        implements Event {
}