Esempio n. 1
0
 protected void StartCreateTechJob()
 {
     currentTechJob = new CreateTechJob(this, techQueue.Dequeue(), Owner, true);
 }
Esempio n. 2
0
 // Complete a tech
 protected void CompleteTechCreation()
 {
     currentTechJob.Tech.GetComponent<Tech>().AddTechForPlayer(Owner);
     currentTechJob = null;
 }