mirror of
https://github.com/Minestom/Minestom.git
synced 2024-11-05 18:32:28 +01:00
c1b278f4b9
Signed-off-by: TheMode <themode@outlook.fr>
15 lines
265 B
Java
15 lines
265 B
Java
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);
|
|
}
|