MappingSpawnButton.xaml.cs 362 B

12345678910111213141516
  1. using Robust.Client.AutoGenerated;
  2. using Robust.Client.UserInterface;
  3. using Robust.Client.UserInterface.XAML;
  4. namespace Content.Client.Mapping;
  5. [GenerateTypedNameReferences]
  6. public sealed partial class MappingSpawnButton : Control
  7. {
  8. public MappingPrototype? Prototype;
  9. public MappingSpawnButton()
  10. {
  11. RobustXamlLoader.Load(this);
  12. }
  13. }