mirror of
https://github.com/NeoFlock/neonucleus.git
synced 2025-09-24 17:13:31 +02:00
8 lines
147 B
Lua
8 lines
147 B
Lua
-- Keeps track of loaded scripts to retain local values between invocation
|
|
-- of their command callbacks.
|
|
local rc = {}
|
|
rc.loaded = {}
|
|
|
|
return rc
|
|
|