otclient/modules/about/about.lua
2011-11-17 18:40:31 -02:00

19 lines
301 B
Lua

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