Files
PeopleVille/PeopleVille/Location/Store.cs
2026-03-27 08:23:41 +01:00

7 lines
144 B
C#

namespace PeopleVille.Locations
{
public class Store : Location
{
public Dictionary<object, int> Inventory { get; set; }
}
}