Add basic handheld GPS (#6896)

Co-authored-by: fishfish458 <fishfish458>
This commit is contained in:
Fishfish458
2022-02-25 23:59:20 -06:00
committed by GitHub
parent 44d5d41d60
commit 6b7379dad0
10 changed files with 135 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
namespace Content.Shared.GPS
{
public abstract class SharedHandheldGPSComponent : Component
{
[DataField("updateRate")]
public float UpdateRate = 1.5f;
}
}