NaturesAura/src/main/java/de/ellpeck/naturesaura/blocks/tiles/ITickableBlockEntity.java

9 lines
217 B
Java
Raw Normal View History

2021-12-04 19:17:21 +01:00
package de.ellpeck.naturesaura.blocks.tiles;
2021-12-05 23:32:31 +01:00
// TODO actually call this from the base entity block thing, and possibly others if not all use the base one!
2021-12-04 19:17:21 +01:00
public interface ITickableBlockEntity {
void tick();
}