adding locations

This commit is contained in:
2026-03-24 14:40:39 +01:00
parent b0f1e8a230
commit 3d828a747c
5 changed files with 37 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
namespace PeopleVille.Location
{
public class Bank : Location
{
}
}

View File

@@ -0,0 +1,7 @@
namespace PeopleVille.Location
{
public class EggStore : Store
{
}
}

View File

@@ -0,0 +1,7 @@
namespace PeopleVille.Location
{
public class GunStore : Store
{
}
}

View File

@@ -0,0 +1,7 @@
namespace PeopleVille.Location
{
public abstract class Location
{
public string Name { get; set; }
}
}

View File

@@ -0,0 +1,9 @@
using PeopleVille.Equipment;
namespace PeopleVille.Location
{
public class Store : Location
{
public Dictionary<object, int> Inventory { get; set; }
}
}