otclient/modules/about/about.lua
2011-11-17 19:41:02 -02:00

19 lines
294 B
Lua

About = {}
-- private variables
local about
-- public functions
function About.create()
about = UI.display('about.otui', { locked = true })
end
function About.destroy()
about:destroy()
about = nil
end
function About.openWebpage()
displayErrorBox("Error", "Not implemented yet")
end