New Moose Structure + Created New Update Mission Method

This commit is contained in:
FlightControl
2016-05-25 11:00:30 +02:00
parent 2a97df7ef9
commit 6a43e9da80
152 changed files with 16809 additions and 517 deletions

View File

@@ -0,0 +1,27 @@
--- A NOTASK is a dummy activity... But it will show a Mission Briefing...
-- @module NOTASK
Include.File("Task")
--- The NOTASK class
-- @type
NOTASK = {
ClassName = "NOTASK",
}
--- Creates a new NOTASK.
function NOTASK:New()
local self = BASE:Inherit( self, TASK:New() )
self:F()
local Valid = true
if Valid then
self.Name = 'Nothing'
self.TaskBriefing = "Task: Execute your mission."
self.Stages = { STAGEBRIEF:New(), STAGESTART:New(), STAGEDONE:New() }
self.SetStage( self, 1 )
end
return self
end