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

public class TimerUpdateEvent {

    public final boolean updatedDeltaTicks;

    public final Object timer;

    public TimerUpdateEvent(Object timer, boolean updatedDeltaTicks) {
        this.timer = timer;
        this.updatedDeltaTicks = updatedDeltaTicks;
    }
}