22 lines
529 B
C#
22 lines
529 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Plane.Copters;
|
|
|
|
namespace Plane.FormationCreator.Formation
|
|
{
|
|
public partial class FlightTaskSingleCopterInfo
|
|
{
|
|
public static FlightTaskSingleCopterInfo CreateForTakeOffTask(ICopter copter, float targetAlt)
|
|
{
|
|
var info = new FlightTaskSingleCopterInfo(copter)
|
|
{
|
|
TargetAlt = targetAlt
|
|
};
|
|
return info;
|
|
}
|
|
}
|
|
}
|