mirror of
https://github.com/lune-org/lune.git
synced 2025-04-22 12:53:55 +01:00
9 lines
87 B
Lua
9 lines
87 B
Lua
local M = {}
|
|
|
|
M.state = 10
|
|
|
|
function M.set_state(n: number)
|
|
M.state = n
|
|
end
|
|
|
|
return M
|