]> icculus.org git repositories - divverent/nexuiz.git/blob - scmenu/main.menu
Adding my current version of the scmenu to the nexuiz cvs.
[divverent/nexuiz.git] / scmenu / main.menu
1 // Property of Alientrap
2 //
3 // Main menu
4 Item Arrangement Main
5 {
6         pos             '252 30'
7         direction       '10 0'
8
9         Derive TextButton Resume
10         {
11                 normal  "Resume"
12                 flag    [FlagConnected]
13
14         }
15         Derive TextButton Create
16         {
17                 normal  "Create Game"
18
19                 target  "CreateGame"
20                 init    Nex_Action_SetNormalPanelLink
21         }
22         Derive TextButton Join
23         {
24                 normal "Join Game"
25
26                 target  "JoinGame"
27                 action  Nex_Action_JumpToJoinGame
28         }
29         Derive TextButton Options
30         {
31                 normal  "Options"
32
33                 target  "Options"
34                 init    Nex_Action_SetNormalPanelLink
35         }
36         Derive TextButton Quit
37         {
38                 normal "Quit"
39                 action Nex_Quit_Action
40         }
41 }
42
43