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

import com.google.gson.annotations.SerializedName;

public record EventLagging(@SerializedName("ms") long ms,
                           @SerializedName("ticks") long ticks)
        implements Event {
}