A quick fix for the dungeon combat.

This commit is contained in:
Zed A. Shaw 2025-12-18 11:01:40 -05:00
parent 6e35ff3d6d
commit 4958f24c1d
3 changed files with 5 additions and 3 deletions

View file

@ -19,8 +19,8 @@ namespace components {
using namespace nlohmann;
struct CombatResult {
int player_did;
int enemy_did;
int player_did = 0;
int enemy_did = 0;
};
struct InventoryItem {