mirror of
https://github.com/FlightControl-Master/MOOSE.git
synced 2025-08-15 10:47:21 +00:00
24 lines
522 B
Lua
24 lines
522 B
Lua
|
|
local base = _G
|
|
env.info("Loading MOOSE " .. base.timer.getAbsTime() )
|
|
|
|
Include = {}
|
|
|
|
Include.Path = function()
|
|
local str = debug.getinfo(2, "S").source
|
|
return str:match("(.*/)"):sub(1,-2):gsub("\\","/")
|
|
end
|
|
|
|
Include.File = function( IncludeFile )
|
|
end
|
|
|
|
Include.ProgramPath = "Scripts/Moose/Moose/"
|
|
Include.MissionPath = Include.Path()
|
|
|
|
env.info( "Include.ProgramPath = " .. Include.ProgramPath)
|
|
env.info( "Include.MissionPath = " .. Include.MissionPath)
|
|
|
|
Include.Files = {}
|
|
|
|
env.info("Loaded MOOSE Include Engine")
|