2025-11-24 22:52:51 +03:00

25 lines
486 B
Java

/*
* Decompiled with CFR 0.152.
*/
package net.minecraft.world.level.entity;
import net.minecraft.world.entity.Entity;
public interface EntityInLevelCallback {
public static final EntityInLevelCallback NULL = new EntityInLevelCallback(){
@Override
public void onMove() {
}
@Override
public void onRemove(Entity.RemovalReason reason) {
}
};
public void onMove();
public void onRemove(Entity.RemovalReason var1);
}