player can now choose between different shields and weapons. added consumable items (healing potion)

This commit is contained in:
2025-11-30 18:29:47 +01:00
parent fb96035c99
commit 51c262d9ac
13 changed files with 167 additions and 24 deletions

View File

@@ -6,6 +6,13 @@ public enum EntityType {
NPC,
MONSTER,
ITEM,
WORLD
WORLD,
WEAPON,
SHIELD;
public enum WeaponType {
SWORD,
AXE
}
}