public EmotionalHungryMotivationManager(EmotionalAgent agent) : base(agent)
 {
     //agent starts hungry
     this.Hunger = new Need(HUNGER_ID, 1, 0, 0, 0)
     {
         Value = 1
     };
 }
 public EmotionalMotivationManager(EmotionalAgent agent)
     : base(agent)
 {
 }