1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
<?xml version="1.0"?>
<Container name="menu" size="250,350" background_image="content/gui/images/background/mainmenu/ingame.png">
<VBox name="button_backgrounds" spacing="1,0" position="15,15">
<Icon image="content/gui/images/buttons/msg_button.png" />
<Icon image="content/gui/images/buttons/msg_button.png" />
<Icon image="content/gui/images/buttons/msg_button.png" />
<Icon image="content/gui/images/buttons/msg_button.png" />
<Icon image="content/gui/images/buttons/msg_button.png" />
<Icon image="content/gui/images/buttons/msg_button.png" />
</VBox>
<VBox name="button_labels" spacing="31,0" position="68,32" fixed_size="185,312">
<Label font="headline" name="start" text="Return to editor" />
<Label font="headline" name="savegame" text="Save map" />
<Label font="headline" name="loadgame" text="Load map" />
<Label font="headline" name="settings" text="Settings" />
<Label font="headline" name="help" text="Help" />
<Label font="headline" name="quit" text="Exit editor" />
</VBox>
<VBox name="button_images" spacing="21,0" position="25,25">
<MainmenuButton name="startGame" icon="compass" max_size="32,32" />
<MainmenuButton name="savegameButton" icon="save" max_size="32,32" />
<MainmenuButton name="loadgameButton" icon="load" max_size="32,32" />
<MainmenuButton name="settingsLink" icon="gears" max_size="32,32" />
<MainmenuButton name="helpLink" icon="help" max_size="32,32" />
<MainmenuButton name="closeButton" icon="door" max_size="32,32" />
</VBox>
</Container>
|