create in game interface panels and renable about and options windows

This commit is contained in:
Eduardo Bart
2011-11-03 07:59:11 -02:00
parent b05bb7818d
commit b345a6d783
30 changed files with 400 additions and 70 deletions

19
modules/about/about.lua Normal file
View File

@@ -0,0 +1,19 @@
About = {}
-- private variables
local about
-- public functions
function About.create()
about = UI.loadAndDisplay("/about/about.otui")
UI.root:lockChild(about)
end
function About.destroy()
about:destroy()
about = nil
end
function About.openWebpage()
displayErrorBox("Error", "Not implemented yet")
end