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