Example #1
0
 public void SetProject(string id, int industryCost)
 {
     CurrentProject = new BuildProject()
     {
         ID = id, IndustryNeed = industryCost
     };
     OnUpdate.InvokeSafe();
 }
 public void Update(Vector2 screenPoint)
 {
     _endPoint = screenPoint;
     OnUpdate.InvokeSafe(this);
 }
Example #3
0
 public void OnStartTurn()
 {
     ProcessCurrentProject(IndustyProduction);
     OnUpdate.InvokeSafe();
 }