NPCWindow.xaml 1.1 KB

123456789101112131415161718192021222324
  1. <controls:FancyWindow xmlns="https://spacestation14.io"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
  4. Title="NPC debug"
  5. MinSize="200 200">
  6. <BoxContainer Name="Options" Orientation="Vertical" Margin="8 8">
  7. <controls:StripeBack>
  8. <Label Text="NPC" HorizontalAlignment="Center"/>
  9. </controls:StripeBack>
  10. <BoxContainer Name="NPCBox" Orientation="Vertical">
  11. <CheckBox Name="NPCThonk" Text="Thonk"/>
  12. </BoxContainer>
  13. <controls:StripeBack>
  14. <Label Text="Pathfinder" HorizontalAlignment="Center"/>
  15. </controls:StripeBack>
  16. <BoxContainer Name="PathfinderBox" Orientation="Vertical">
  17. <CheckBox Name="PathCrumbs" Text="Breadcrumbs"/>
  18. <CheckBox Name="PathPolys" Text="Polygons"/>
  19. <CheckBox Name="PathNeighbors" Text="Neighbors"/>
  20. <CheckBox Name="PathRouteCosts" Text="Route costs"/>
  21. <CheckBox Name="PathRoutes" Text="Routes"/>
  22. </BoxContainer>
  23. </BoxContainer>
  24. </controls:FancyWindow>