equipments #22

Merged
viud3133 merged 40 commits from equipments into main 2025-10-30 12:09:43 +01:00
Showing only changes of commit 81bbe5045e - Show all commits

6
src/main/java/Nixie.java Normal file
View File

@@ -0,0 +1,6 @@
public abstract class Nixie extends Monster implements CanMove, CanAttack {
public Nixie() {
super(0,0,Monster.DEFAULT_POSITION);
}
}