Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/presentation2/data/gui/scripts/CreditsMenu.lua @ 6363

Last change on this file since 6363 was 6363, checked in by rgrieder, 14 years ago

svn:eol-style "native" for all text files.
Also removed two executable properties (whatever they lost in these files ).

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