Files
kubeinvaders/main/mymodules/help.lua
2020-05-24 08:28:44 +02:00

11 lines
224 B
Lua

local M = {}
function M.get_help()
msg.post("ui#gui","help",{ position = vmath.vector3(5, 300, 0) })
end
function M.quit_help()
msg.post("ui#gui","quit_help",{ position = vmath.vector3(-1000, -1000, 0) })
end
return M