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