renaming and restructure

This commit is contained in:
2026-03-24 14:35:24 +01:00
parent 4d49ad27a0
commit b0f1e8a230
4 changed files with 4 additions and 4 deletions

View File

@@ -0,0 +1,19 @@
namespace PeopleVille.Person
{
public abstract class Person
{
public string Name { get; set; }
public int Health { get; set; }
// TODO: Tilføj inventory når Equipment er oprettet
public List<object> Inventory { get; set; }
public object Location { get; set; }
public int Money { get; set; }
public int Age { get; set; }
public void Walk(object location)
{
this.Location = location;
}
}
}