2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-06-02 22:47:42 +00:00
OpenAssetTools/tools/scripts/including.lua

20 lines
317 B
Lua

-- Functions for including projects
Includes = {}
function Includes:create()
list = {
handles = {}
}
function list:handle(name)
if self.handles[name] == nil then
self.handles[name] = true
return true
end
return false
end
return list
end