1
0

DefaultGameScreen.xaml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. xmlns:targeting="clr-namespace:Content.Client._Shitmed.UserInterface.Systems.Targeting.Widgets"
  13. Name="DefaultHud"
  14. VerticalExpand="False"
  15. VerticalAlignment="Bottom"
  16. HorizontalAlignment="Center">
  17. <LayoutContainer Name="ViewportContainer"
  18. HorizontalExpand="True"
  19. VerticalExpand="True">
  20. <controls:MainViewport Name="MainViewport"/>
  21. </LayoutContainer>
  22. <BoxContainer Name="TopLeft"
  23. Access="Protected"
  24. Orientation="Vertical">
  25. <BoxContainer Orientation="Horizontal">
  26. <menuBar:GameTopMenuBar Name="TopBar"
  27. Access="Protected"/>
  28. <!-- Buffer so big votes don't skew it -->
  29. <Control/>
  30. </BoxContainer>
  31. <BoxContainer Name="VoteMenu"
  32. Access="Public"
  33. Margin="0 10 0 10"
  34. Orientation="Vertical"/>
  35. <actions:ActionsBar Name="Actions"
  36. Access="Protected"/>
  37. </BoxContainer>
  38. <widgets:GhostGui Name="Ghost"
  39. Access="Protected"/>
  40. <inventory:InventoryGui Name="Inventory"
  41. Access="Protected"/>
  42. <hotbar:HotbarGui Name="Hotbar"
  43. Access="Protected"/>
  44. <targeting:TargetingControl Name="Targeting"
  45. Access="Protected"/>
  46. <!-- Shitmed Change -->
  47. <chat:ResizableChatBox Name="Chat"
  48. Access="Protected"/>
  49. <alerts:AlertsUI Name="Alerts"
  50. Access="Protected"/>
  51. </screens:DefaultGameScreen>