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