add Lua sandbox with timer system (milestones 1-5 complete)
This commit is contained in:
11
sandbox-test/scripts/scripts/test_module.lua
Normal file
11
sandbox-test/scripts/scripts/test_module.lua
Normal file
@@ -0,0 +1,11 @@
|
||||
-- Test module for SafeRequire tests
|
||||
local M = {}
|
||||
|
||||
M.value = 42
|
||||
M.name = "test_module"
|
||||
|
||||
function M.add(a, b)
|
||||
return a + b
|
||||
end
|
||||
|
||||
return M
|
||||
Reference in New Issue
Block a user