Code/net/minecraft/world/level/entity/EntityInLevelCallback.java

19 lines
421 B
Java
Raw Normal View History

2025-07-01 06:20:03 +00:00
package net.minecraft.world.level.entity;
import net.minecraft.world.entity.Entity;
public interface EntityInLevelCallback {
EntityInLevelCallback NULL = new EntityInLevelCallback() {
@Override
public void onMove() {
}
@Override
public void onRemove(Entity.RemovalReason p_156805_) {
}
};
void onMove();
void onRemove(Entity.RemovalReason p_156801_);
}