aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/moe/ymc/acron/s2c/EventEntityDeath.java
blob: 201cdf371125655b9b22a2233bb68f23410f9f6b (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;

// TODO: More detailed death report.
public record EventEntityDeath(@SerializedName("entity") @NotNull Entity entity,
                               @SerializedName("message") @NotNull String message)
        implements Event {
}