NaturesAura/src/main/java/de/ellpeck/naturesaura/blocks/tiles/ITickableBlockEntity.java
2021-12-05 23:32:31 +01:00

9 lines
217 B
Java

package de.ellpeck.naturesaura.blocks.tiles;
// TODO actually call this from the base entity block thing, and possibly others if not all use the base one!
public interface ITickableBlockEntity {
void tick();
}