New WorldBuilder files, and person inventory update

This commit is contained in:
aqys
2026-03-25 10:08:13 +01:00
parent 7ca21b58a0
commit 0d94ab4ac1
3 changed files with 21 additions and 1 deletions

View File

@@ -6,7 +6,7 @@ namespace PeopleVille.Persons
{
public string Name { get; set; }
public int Health { get; set; }
public List<IEquipment> Inventory { get; set; }
public List<IEquipment> Inventory { get; set; } = new List<IEquipment>(); // hellere at de starter med tomt inventory end et inventory der ikke eksisterer.
public object Location { get; set; }
public int Money { get; set; }
public int Age { get; set; }