blob: 974508d5c6ec5f9decd61eecd60448d605fc3c9c (
plain)
1
2
3
4
5
6
7
8
9
|
package cc.polyfrost.oneconfig.events.event;
public class HudRenderEvent {
public final float deltaTicks;
public HudRenderEvent(float deltaTicks) {
this.deltaTicks = deltaTicks;
}
}
|