2022-09-11 08:53:17 +02:00
|
|
|
using Content.Client.GPS.Components;
|
|
|
|
|
using Content.Client.GPS.UI;
|
|
|
|
|
using Content.Client.Items;
|
|
|
|
|
|
|
|
|
|
namespace Content.Client.GPS.Systems;
|
|
|
|
|
|
|
|
|
|
public sealed class HandheldGpsSystem : EntitySystem
|
|
|
|
|
{
|
|
|
|
|
public override void Initialize()
|
|
|
|
|
{
|
|
|
|
|
base.Initialize();
|
|
|
|
|
|
2024-01-12 01:14:13 +01:00
|
|
|
Subs.ItemStatus<HandheldGPSComponent>(ent => new HandheldGpsStatusControl(ent));
|
2022-09-11 08:53:17 +02:00
|
|
|
}
|
|
|
|
|
}
|