Documentation

This commit is contained in:
svenvandevelde
2016-03-15 17:56:41 +01:00
parent 4228c2c1ca
commit 17f961f7d9
42 changed files with 1569 additions and 1300 deletions

View File

@@ -4,7 +4,7 @@ dofile('Scripts/ScriptingSystem.lua')
Include = {}
Include.LoadPath = 'Scripts/MOOSE/MOOSE'
Include.LoadPath = 'Scripts/MOOSE'
Include.Files = {}
Include.File = function( IncludeFile )
@@ -15,13 +15,11 @@ Include.File = function( IncludeFile )
end
end
Include.File( "Trace" )
Include.File( "Routines" )
Include.File( "Database" )
Include.File( "StatHandler" )
--Include.File( "StatHandler" )
--Sanitize Mission Scripting environment
--This makes unavailable some unsecure functions.
--This makes unavailable some unsecure functions.
--Mission downloaded from server to client may contain potentialy harmful lua code that may use these functions.
--You can remove the code below and make availble these functions at your own risk.
@@ -36,4 +34,4 @@ do
sanitizeModule('lfs')
require = nil
loadlib = nil
end
end