Code/net/minecraft/world/level/block/entity/TickingBlockEntity.java

13 lines
215 B
Java
Raw Permalink Normal View History

2025-07-01 06:20:03 +00:00
package net.minecraft.world.level.block.entity;
import net.minecraft.core.BlockPos;
public interface TickingBlockEntity {
void tick();
boolean isRemoved();
BlockPos getPos();
String getType();
}