diff --git a/Content.Shared/Administration/Components/MarkerComponent.cs b/Content.Shared/Administration/Components/MarkerComponent.cs new file mode 100644 index 0000000000..b879595619 --- /dev/null +++ b/Content.Shared/Administration/Components/MarkerComponent.cs @@ -0,0 +1,19 @@ +namespace Content.Shared.Administration.Components; + +/// +/// This component does nothing. It exists for admin and testing purposes. +/// +/// +/// As an example, this component can be added to an entity and then used as +/// the target component for a pinpointer. +/// +[RegisterComponent] +public sealed partial class MarkerOneComponent : Component; + +/// +[RegisterComponent] +public sealed partial class MarkerTwoComponent : Component; + +/// +[RegisterComponent] +public sealed partial class MarkerThreeComponent : Component;