Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/menu/data/gui/scripts/NewCreditsMenu.lua @ 6146

Last change on this file since 6146 was 6146, checked in by cmueri, 14 years ago

10 new layout- and lua-files for the menues added

  • Property svn:executable set to *
File size: 391 bytes
Line 
1-- NewCreditsMenu.lua
2
3BasicGUI = require("BasicGUI")
4local P = BasicGUI:new() --inherit everything from the gui package
5if _REQUIREDNAME == nil then
6    NewCreditsMenu = P
7else
8    _G[_REQUIREDNAME] = P
9end
10
11P.filename = "NewCreditsMenu"
12P.layoutString = "NewCreditsMenu.layout"
13
14function P.CreditsBackButton_clicked(e)
15    hideGUI("NewCreditsMenu")
16    debug("event: back")
17end
18
19return P
20
Note: See TracBrowser for help on using the repository browser.