packagecc.polyfrost.oneconfig.events.event;/** * Called when a game tick is started / ended, represented by a {@link Stage} */publicclassTickEvent{/** * Whether the tick is starting or ending. */publicfinalStagestage;publicTickEvent(Stagestage){this.stage=stage;}}