Added DoSomething logic, shoot, eat and intialize.

This commit is contained in:
aqys
2026-03-26 11:21:23 +01:00
parent 75ad3da5c5
commit 13ad815ce1
5 changed files with 58 additions and 4 deletions

View File

@@ -1,5 +1,6 @@
using PeopleVille.Equipment;
using PeopleVille.Locations;
using PeopleVille.WorldBuilder;
namespace PeopleVille.Persons
{
@@ -17,6 +18,9 @@ namespace PeopleVille.Persons
public Location CurrentLocation { get; set; }
public GameManager Manager { get; set; }
public World World { get; set; }
public virtual void Initialize() { }
public void Walk(Location newLocation)
{