]> icculus.org git repositories - divverent/nexuiz.git/blob - scmenu/main.menu
Change 'cd volume' to 'music volume'
[divverent/nexuiz.git] / scmenu / main.menu
1 // Property of Alientrap
2 //
3 // Main menu
4 Item Arrangement Main
5 {
6         pos             '29 30'
7         direction       '10 0'
8
9         Derive PictureButton Join
10         {
11                 //normal "Join Game"
12                 normal          "$gfx/m_top_joingame"
13                 selected        "$gfx/m_top_joingame"
14
15                 target  "JoinGame"
16                 action  Nex_Action_JumpToJoinGame
17         }
18         Derive PictureButton Create
19         {
20                 //normal        "Create Game"
21                 normal          "$gfx/m_top_creategame"
22                 selected        "$gfx/m_top_creategame"
23
24                 target  "CreateGame"
25                 init    Nex_Action_SetNormalPanelLink
26         }
27         Derive PictureButton Options
28         {
29                 //normal        "Options"
30                 normal          "$gfx/m_top_options"
31                 selected        "$gfx/m_top_options"
32
33                 target  "Options"
34                 init    Nex_Action_SetNormalPanelLink
35         }
36         Derive PictureButton Credits
37         {
38                 //normal        "Credits"
39                 normal          "$gfx/m_top_credits"
40                 selected        "$gfx/m_top_credits"
41
42                 action          Nex_Credits_Action
43         }
44         Derive PictureButton Quit
45         {
46                 //normal "Quit"
47                 normal          "$gfx/m_top_quit"
48                 selected        "$gfx/m_top_quit"
49
50                 action          Nex_Quit_Action
51         }
52 }
53
54