Esempio n. 1
0
 public Goal(MovingEntity owner, Goal_Type type)
 {
     this.Owner = owner;
     this.Type = type;
     this.Status = Goal_Status.INACTIVE;
 }
 public CompositeGoal(MovingEntity owner, Goal_Type type)
     : base(owner, type)
 {
 }