DefaultGameScreen.xaml 1.9 KB

123456789101112131415161718192021222324252627282930313233
  1. <screens:DefaultGameScreen
  2. xmlns="https://spacestation14.io"
  3. xmlns:screens="clr-namespace:Content.Client.UserInterface.Screens"
  4. xmlns:menuBar="clr-namespace:Content.Client.UserInterface.Systems.MenuBar.Widgets"
  5. xmlns:actions="clr-namespace:Content.Client.UserInterface.Systems.Actions.Widgets"
  6. xmlns:chat="clr-namespace:Content.Client.UserInterface.Systems.Chat.Widgets"
  7. xmlns:alerts="clr-namespace:Content.Client.UserInterface.Systems.Alerts.Widgets"
  8. xmlns:widgets="clr-namespace:Content.Client.UserInterface.Systems.Ghost.Widgets"
  9. xmlns:hotbar="clr-namespace:Content.Client.UserInterface.Systems.Hotbar.Widgets"
  10. xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
  11. xmlns:inventory="clr-namespace:Content.Client.UserInterface.Systems.Inventory.Widgets"
  12. Name="DefaultHud"
  13. VerticalExpand="False"
  14. VerticalAlignment="Bottom"
  15. HorizontalAlignment="Center">
  16. <LayoutContainer Name="ViewportContainer" HorizontalExpand="True" VerticalExpand="True">
  17. <controls:MainViewport Name="MainViewport"/>
  18. </LayoutContainer>
  19. <BoxContainer Name="TopLeft" Access="Protected" Orientation="Vertical">
  20. <BoxContainer Orientation="Horizontal">
  21. <menuBar:GameTopMenuBar Name="TopBar" Access="Protected" />
  22. <!-- Buffer so big votes don't skew it -->
  23. <Control/>
  24. </BoxContainer>
  25. <BoxContainer Name="VoteMenu" Access="Public" Margin="0 10 0 10" Orientation="Vertical"/>
  26. <actions:ActionsBar Name="Actions" Access="Protected" />
  27. </BoxContainer>
  28. <widgets:GhostGui Name="Ghost" Access="Protected" />
  29. <inventory:InventoryGui Name="Inventory" Access="Protected" />
  30. <hotbar:HotbarGui Name="Hotbar" Access="Protected" />
  31. <chat:ResizableChatBox Name="Chat" Access="Protected" />
  32. <alerts:AlertsUI Name="Alerts" Access="Protected" />
  33. </screens:DefaultGameScreen>