aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/cc/polyfrost/oneconfig/events/event/HudRenderEvent.java
blob: 465a2f668d89964671406c33f5918350e4698653 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package cc.polyfrost.oneconfig.events.event;

/**
 * Called when external HUDs can be rendered.
 */
public class HudRenderEvent {
    /**
     * How much time has elapsed since the last tick, in ticks. Used for animations.
     */
    public final float deltaTicks;

    public HudRenderEvent(float deltaTicks) {
        this.deltaTicks = deltaTicks;
    }
}