mirror of
https://github.com/FlightControl-Master/MOOSE.git
synced 2025-10-29 16:58:06 +00:00
20 lines
502 B
Lua
20 lines
502 B
Lua
Include.File( "Mission" )
|
|
Include.File( "Client" )
|
|
Include.File( "Escort" )
|
|
|
|
|
|
do
|
|
local EscortClient = CLIENT:New( "Lead Helicopter", "Fly around and observe the behaviour of the escort helicopter" )
|
|
local EscortGroup = GROUP:NewFromName( "Escort Helicopter" )
|
|
|
|
local Escort = ESCORT:New( EscortClient, EscortGroup, "Escort Test" )
|
|
end
|
|
|
|
|
|
-- MISSION SCHEDULER STARTUP
|
|
MISSIONSCHEDULER.Start()
|
|
MISSIONSCHEDULER.ReportMenu()
|
|
MISSIONSCHEDULER.ReportMissionsHide()
|
|
|
|
env.info( "Test Mission loaded" )
|