From ca33d6bb7019bc839668e0e1e49c4c8b98fa1da9 Mon Sep 17 00:00:00 2001 From: Tayrtahn Date: Sun, 20 Apr 2025 15:08:41 -0400 Subject: [PATCH] Add marker components for admin shenanigans (#36776) --- .../Components/MarkerComponent.cs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Content.Shared/Administration/Components/MarkerComponent.cs 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;