Files
tbd-station-14/Content.Server/Pinpointer/StationMapUserComponent.cs
2024-08-09 15:24:49 +10: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;
}