* Basic voting * Rewrite lobby in XAML. Working lobby voting. * Escape menu is now XAML. * Vote menu works, custom votes, gamemode votes. * Vote timeouts & administration. Basically done now. * I will now pretend I was never planning to code voting hotkeys. * Make vote call UI a bit... funny. * Fix exception on round restart. * Fix some vote command definitions.
13 lines
491 B
XML
13 lines
491 B
XML
<SS14Window xmlns="https://spacestation14.io"
|
|
xmlns:voting="clr-namespace:Content.Client.Voting"
|
|
Title="{Loc 'Esc Menu'}"
|
|
Resizable="False">
|
|
|
|
<VBoxContainer SeparationOverride="4">
|
|
<voting:VoteCallMenuButton />
|
|
<Button Name="OptionsButton" Text="{Loc 'Options'}" />
|
|
<Button Name="DisconnectButton" Text="{Loc 'Disconnect'}" />
|
|
<Button Name="QuitButton" Text="{Loc 'Quit game'}" />
|
|
</VBoxContainer>
|
|
</SS14Window>
|