Last change
on this file since 6224 was
6224,
checked in by scheusso, 15 years ago
|
adding keybind menu files
|
-
Property svn:executable set to
*
|
File size:
421 bytes
|
Rev | Line | |
---|
[6224] | 1 | -- NewMouseControlsMenu.lua |
---|
| 2 | |
---|
| 3 | BasicGUI = require("BasicGUI") |
---|
| 4 | local P = BasicGUI:new() --inherit everything from the gui package |
---|
| 5 | if _REQUIREDNAME == nil then |
---|
| 6 | NewMouseControlsMenu = P |
---|
| 7 | else |
---|
| 8 | _G[_REQUIREDNAME] = P |
---|
| 9 | end |
---|
| 10 | |
---|
| 11 | P.filename = "NewMouseControlsMenu" |
---|
| 12 | P.layoutString = "NewMouseControlsMenu.layout" |
---|
| 13 | |
---|
| 14 | function P.KeyBindBackButton_clicked(e) |
---|
| 15 | hideGUI("NewMouseControlsMenu") |
---|
| 16 | debug("event: back") |
---|
| 17 | end |
---|
| 18 | |
---|
| 19 | return P |
---|
| 20 | |
---|
Note: See
TracBrowser
for help on using the repository browser.