public FleetGoal(Fleet fleet, Vector2 MovePosition, float facing, Vector2 fVec, Fleet.FleetGoalType t)
 {
     this.type = t;
     this.fleet = fleet;
     this.FinalFacingVector = fVec;
     this.FinalFacing = facing;
     this.MovePosition = MovePosition;
 }
 public FleetGoal(SolarSystem toAttack, Fleet fleet, Fleet.FleetGoalType t)
 {
     this.fleet = fleet;
     this.sysToAttack = toAttack;
     this.type = t;
 }