mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-05 12:59:08 +01:00
14 lines
551 B
Java
14 lines
551 B
Java
package de.ellpeck.naturesaura.blocks.tiles;
|
|
|
|
import net.minecraft.world.level.block.entity.BlockEntity;
|
|
import net.minecraft.world.level.block.entity.BlockEntityTicker;
|
|
import net.minecraft.world.level.block.entity.BlockEntityType;
|
|
|
|
public interface ITickableBlockEntity {
|
|
|
|
void tick();
|
|
|
|
static <E extends BlockEntity, A extends BlockEntity> BlockEntityTicker<A> createTickerHelper(BlockEntityType<A> actual, BlockEntityType<E> expected) {
|
|
return expected == actual ? (l, p, s, e) -> ((ITickableBlockEntity) e).tick() : null;
|
|
}
|
|
}
|