mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-19 15:52:53 +00:00
20 lines
317 B
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 |