Last change
on this file since 6922 was
6621,
checked in by rgrieder, 15 years ago
|
Simplified GUI sheet creation (first lines in the lua file) a lot by exporting it to GUITools.lua
|
-
Property svn:eol-style set to
native
|
File size:
325 bytes
|
Line | |
---|
1 | -- ControlsMenu.lua |
---|
2 | |
---|
3 | local P = createSheet("ControlsMenu") |
---|
4 | |
---|
5 | function P.ControlsMouseControlsButton_clicked(e) |
---|
6 | showGUI("MouseControlsMenu", true) |
---|
7 | end |
---|
8 | |
---|
9 | function P.ControlsKeyboardControlsButton_clicked(e) |
---|
10 | showGUI("KeyBindMenu", true) |
---|
11 | end |
---|
12 | |
---|
13 | function P.ControlsBackButton_clicked(e) |
---|
14 | hideGUI(P.filename) |
---|
15 | end |
---|
16 | |
---|
17 | return P |
---|
18 | |
---|
Note: See
TracBrowser
for help on using the repository browser.