Files
OldThink/Content.Server/Pinpointer/StationMapComponent.cs

18 lines
374 B
C#
Raw Permalink Normal View History

2023-04-13 16:21:24 +10:00
namespace Content.Server.Pinpointer;
[RegisterComponent]
public sealed partial class StationMapComponent : Component
2023-04-13 16:21:24 +10:00
{
}
/// <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;
}