mirror of
https://github.com/FlightControl-Master/MOOSE.git
synced 2025-08-15 10:47:21 +00:00
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
|