2023-04-13 16:21:24 +10:00
|
|
|
namespace Content.Server.Pinpointer;
|
|
|
|
|
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
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]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class StationMapUserComponent : Component
|
2023-04-13 16:21:24 +10:00
|
|
|
{
|
|
|
|
|
[DataField("mapUid")]
|
|
|
|
|
public EntityUid Map;
|
|
|
|
|
}
|