1
0

GameTopMenuBar.xaml.cs 387 B

123456789101112131415
  1. using Robust.Client.AutoGenerated;
  2. using Robust.Client.UserInterface.Controls;
  3. using Robust.Client.UserInterface.XAML;
  4. namespace Content.Client.UserInterface.Systems.MenuBar.Widgets
  5. {
  6. [GenerateTypedNameReferences]
  7. public sealed partial class GameTopMenuBar : UIWidget
  8. {
  9. public GameTopMenuBar()
  10. {
  11. RobustXamlLoader.Load(this);
  12. }
  13. }
  14. }