Statemachine

This commit is contained in:
FlightControl
2016-06-30 10:52:37 +02:00
parent 7ab52025fd
commit e2250dc92f
38 changed files with 468 additions and 46879 deletions

View 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