16 lines
334 B
C#
16 lines
334 B
C#
using Robust.Client.AutoGenerated;
|
|
using Robust.Client.UserInterface.Controls;
|
|
using Robust.Client.UserInterface.XAML;
|
|
|
|
namespace Content.Client.Mapping;
|
|
|
|
[GenerateTypedNameReferences]
|
|
public sealed partial class MappingActionsButton : Button
|
|
{
|
|
public MappingActionsButton()
|
|
{
|
|
RobustXamlLoader.Load(this);
|
|
}
|
|
}
|
|
|