From: Tayrtahn Date: Sun, 20 Apr 2025 19:08:41 +0000 (-0400) Subject: Add marker components for admin shenanigans (#36776) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=ca33d6bb7019bc839668e0e1e49c4c8b98fa1da9;p=space-station-14.git Add marker components for admin shenanigans (#36776) --- 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;