pccompat/src/main/java/net/anvilcraft/pccompat/tiles/ITileNeighborNotify.java
LordMZTE 0f858338ff
All checks were successful
ci/woodpecker/push/central-override Pipeline was successful
feat: implement electricraft converters
2023-07-28 19:50:38 +02:00

10 lines
231 B
Java

package net.anvilcraft.pccompat.tiles;
/**
* An interface for PowerConverter TEs that will be notified by the
* block when a neighbor TE changes
*/
public interface ITileNeighborNotify {
public void onNeighborTEChange();
}