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