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