Example #1
0
 public Hunter(string _text)
 {
     _foodCarried   = 0;
     _foodWarehouse = 0;
     _thirst        = 0;
     _fatigue       = 0;
     Name           = _text;
     _StateMachine  = new StateMachine <Hunter>(this);
     _location      = Locations.Location.location_type.HOME;
 }
Example #2
0
 public HunterWife(string _text)
 {
     Name          = _text;
     _StateMachine = new StateMachine <HunterWife>(this);
     _location     = Locations.Location.location_type.HOME;
 }