Files
tbd-station-14/Content.Shared/Tools/Components/SharedHandheldGPSComponent.cs
Fishfish458 6b7379dad0 Add basic handheld GPS (#6896)
Co-authored-by: fishfish458 <fishfish458>
2022-02-26 16:59:20 +11:00

10 lines
185 B
C#

namespace Content.Shared.GPS
{
public abstract class SharedHandheldGPSComponent : Component
{
[DataField("updateRate")]
public float UpdateRate = 1.5f;
}
}