Add ranches to database

This commit is contained in:
SilicaAndPina 2021-02-08 12:03:46 +13:00
parent 81440b1814
commit 64671ef186
2 changed files with 56 additions and 2 deletions

View file

@ -26,14 +26,19 @@ namespace HISP.Game
public int Value;
public int OwnerId;
public int Upgraded;
public int UpgradedLevel;
public int InvestedMoney;
public string Title;
public string Description;
public RanchBuilding[] Buildings = new RanchBuilding[16];
public Ranch(int x, int y, int id, int value)
{
X = x;
Y = y;
Id = id;
Value = value;
Upgraded = 0;
UpgradedLevel = 0;
OwnerId = -1;
}