Files
crystall-punk-14/Content.Server/Pinpointer/StationMapUserComponent.cs

12 lines
288 B
C#
Raw Permalink Normal View History

2023-04-13 16:21:24 +10:00
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
2023-04-13 16:21:24 +10:00
{
[DataField("mapUid")]
public EntityUid Map;
}