Files
tbd-station-14/Content.Shared/Pinpointer/StationMapComponent.cs
2024-08-09 15:24:49 +10:00

12 lines
275 B
C#

namespace Content.Shared.Pinpointer;
[RegisterComponent]
public sealed partial class StationMapComponent : Component
{
/// <summary>
/// Whether or not to show the user's location on the map.
/// </summary>
[DataField]
public bool ShowLocation = true;
}