minecraft-src/net/minecraft/world/level/entity/EntityInLevelCallback.java
2025-07-04 01:41:11 +03:00

19 lines
368 B
Java

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 reason) {
}
};
void onMove();
void onRemove(Entity.RemovalReason reason);
}