Last change
on this file since 6554 was
6363,
checked in by rgrieder, 15 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
|
Rev | Line | |
---|
[6363] | 1 | -- CreditsMenu.lua |
---|
| 2 | |
---|
| 3 | BasicGUI = require("BasicGUI") |
---|
| 4 | local P = BasicGUI:new() --inherit everything from the gui package |
---|
| 5 | if _REQUIREDNAME == nil then |
---|
| 6 | CreditsMenu = P |
---|
| 7 | else |
---|
| 8 | _G[_REQUIREDNAME] = P |
---|
| 9 | end |
---|
| 10 | |
---|
| 11 | P.filename = "CreditsMenu" |
---|
| 12 | P.layoutString = "CreditsMenu.layout" |
---|
| 13 | |
---|
| 14 | function P.CreditsBackButton_clicked(e) |
---|
| 15 | hideGUI(P.filename) |
---|
| 16 | end |
---|
| 17 | |
---|
| 18 | return P |
---|
| 19 | |
---|
Note: See
TracBrowser
for help on using the repository browser.