Example #1
0
		public Worker (Actor myActor)
		{
			actor = myActor;
			actor.worker = this;
			JobManager.AddWorker (this);
		}
Example #2
0
		public void Initiate (Actor parent, float maxLife)
		{
			Parent = parent;
			MaxLife = maxLife;
			Limbs = new Dictionary<string, List<Limb>> ();
		}