mirror of
https://github.com/edubart/otclient.git
synced 2025-04-30 17:49:21 +02:00
19 lines
301 B
Lua
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 |