1
0

StationMapComponent.cs 275 B

1234567891011
  1. namespace Content.Shared.Pinpointer;
  2. [RegisterComponent]
  3. public sealed partial class StationMapComponent : Component
  4. {
  5. /// <summary>
  6. /// Whether or not to show the user's location on the map.
  7. /// </summary>
  8. [DataField]
  9. public bool ShowLocation = true;
  10. }