Files
tbd-station-14/Content.Server/Pinpointer/StationMapComponent.cs
2023-04-13 16:21:24 +10:00

18 lines
358 B
C#

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