mirror of
https://github.com/FlightControl-Master/MOOSE.git
synced 2025-10-29 16:58:06 +00:00
14 lines
223 B
Lua
14 lines
223 B
Lua
local base = _G
|
|
|
|
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.Files = {}
|