6
StarHorizon_Public/Content.Server/Pinpointer/StationMapUserComponent.cs
2025-11-11 11:18:56 +03:00

12 lines
288 B
C#

namespace Content.Server.Pinpointer;
/// <summary>
/// Added to an entity using station map so when its parent changes we reset it.
/// </summary>
[RegisterComponent]
public sealed partial class StationMapUserComponent : Component
{
[DataField("mapUid")]
public EntityUid Map;
}