24 lines
438 B
Lua
24 lines
438 B
Lua
About = {}
|
|
|
|
-- private variables
|
|
local aboutButton
|
|
|
|
-- public functions
|
|
function About.init()
|
|
aboutButton = TopMenu.addRightButton('aboutButton', 'About', 'about.png', About.display)
|
|
end
|
|
|
|
function About.display()
|
|
displayUI('about.otui', { locked = true })
|
|
end
|
|
|
|
function About.terminate()
|
|
aboutButton:destroy()
|
|
aboutButton = nil
|
|
About = nil
|
|
end
|
|
|
|
function About.openWebpage()
|
|
displayErrorBox("Error", "Not implemented yet")
|
|
end
|