mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-05 20:59:09 +01:00
8 lines
107 B
Java
8 lines
107 B
Java
|
package de.ellpeck.naturesaura.blocks.tiles;
|
||
|
|
||
|
public interface ITickableBlockEntity {
|
||
|
|
||
|
void tick();
|
||
|
|
||
|
}
|