1 2 3 4 5 6 7 8 9
package cc.polyfrost.oneconfig.events.event; public class TickEvent { public final Stage stage; public TickEvent(Stage stage) { this.stage = stage; } }