play sound and change presence of tile if interacted with

This commit is contained in:
2025-12-08 05:02:36 +01:00
parent 730c7d406e
commit 285b18b4cc
5 changed files with 44 additions and 1 deletions

View File

@@ -16,6 +16,13 @@ public class InteractiveTile extends Entity {
public void update() {
}
public void playSE() {}
public InteractiveTile getDestroyedForm() {
return null;
}
public boolean meetItemReq(Entity entity) {
return false;
}