mirror of
				https://github.com/Laupetin/OpenAssetTools.git
				synced 2025-10-31 02:26:59 +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 |