created destructible tiles

This commit is contained in:
2025-12-08 04:48:27 +01:00
parent 5f9fd8ea99
commit 49c8b59d68
10 changed files with 65 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
package de.miaurizius.jgame2d.tile.interactive;
import de.miaurizius.jgame2d.core.GamePanel;
import de.miaurizius.jgame2d.entity.Entity;
public class InteractiveTile extends Entity {
GamePanel panel;
public boolean destructible;
public InteractiveTile(GamePanel panel, int col, int row) {
super(panel);
this.panel = panel;
}
public void update() {
}
}