package de.geolykt.starloader.api.event; /** * Callback that is called when an object is ticked. * * @param The object type to be ticked */ @FunctionalInterface public interface TickCallback { /** * Ticks the object. * * @param object The object that was ticked */ public void tick(T object); }