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; // TODO: More detailed death report. public record EventEntityDeath(@SerializedName("entity") @NotNull Entity entity, @SerializedName("message") @NotNull String message) implements Event { }