mirror of
https://github.com/FlightControl-Master/MOOSE.git
synced 2026-07-23 21:16:28 +00:00
bba6aa8fb6
# Conflicts: # Moose Test Missions/Moose_Test_DETECTION/Moose_Test_DETECTION_Laser.miz
18 lines
303 B
Lua
18 lines
303 B
Lua
--- @module Task2Workflow
|
|
|
|
--- The TASK2_WORKFLOW class
|
|
-- @type TASK2_WORKFLOW
|
|
-- @extends Base#BASE
|
|
TASK2_WORKFLOW = {
|
|
ClassName = "TASK2_WORKFLOW",
|
|
}
|
|
|
|
function TASK2_WORKFLOW:New( Client, Task )
|
|
|
|
-- Inherits from BASE
|
|
local self = BASE:Inherit( self, BASE:New() )
|
|
|
|
Task:Assign( Client )
|
|
|
|
end
|