mirror of
https://github.com/FlightControl-Master/MOOSE.git
synced 2025-08-15 10:47:21 +00:00
Statemachine
This commit is contained in:
17
Moose Development/Moose/TaskWorkflow.lua
Normal file
17
Moose Development/Moose/TaskWorkflow.lua
Normal file
@@ -0,0 +1,17 @@
|
||||
--- @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
|
||||
Reference in New Issue
Block a user