All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.minestom.server.Tickable Maven / Gradle / Ivy

There is a newer version: 7320437640
Show newest version
package net.minestom.server;

/**
 * Represents an element which is ticked at a regular interval.
 */
public interface Tickable {

    /**
     * Ticks this element.
     *
     * @param time the time of the tick in milliseconds
     */
    void tick(long time);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy