Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/gamestates2/data/gui/scripts/MultiplayerOptionsMenu.lua @ 6595

Last change on this file since 6595 was 6595, checked in by rgrieder, 15 years ago

Merged remaining revisions from gamestate to gamestates2.

  • Property svn:eol-style set to native
File size: 296 bytes
Line 
1-- MultiplayerOptionsMenu.lua
2
3BasicGUI = require("BasicGUI")
4local P = BasicGUI:new("MultiplayerOptionsMenu")
5if _REQUIREDNAME == nil then
6    MultiplayerOptionsMenu = P
7else
8    _G[_REQUIREDNAME] = P
9end
10
11function P.MultiplayerOptionsBackButton_clicked(e)
12    hideGUI(P.filename)
13end
14
15return P
Note: See TracBrowser for help on using the repository browser.