history is flowing

This commit is contained in:
2026-03-26 12:04:25 +01:00
parent bfd4ec7a59
commit ea1d6b0634
8 changed files with 121 additions and 25 deletions

View File

@@ -7,7 +7,7 @@ namespace PeopleVille.Persons
public abstract class Person
{
public string Name { get; set; }
public int Health { get; set; }
public int Health { get; set; } = 100;
// hellere at de starter med tomt inventory end et inventory der ikke eksisterer.
public List<IEquipment> Inventory { get; set; } = [];
@@ -19,6 +19,7 @@ namespace PeopleVille.Persons
public GameManager Manager { get; set; }
public World World { get; set; }
public bool Dead { get; set; } = false;
public virtual void Initialize() { }