* Device network changes * Update too * Update Content.Server/GameObjects/EntitySystems/DeviceNetworkSystem.cs Co-authored-by: Metal Gear Sloth <metalgearsloth@gmail.com> Co-authored-by: Víctor Aguilera Puerto <6766154+Zumorica@users.noreply.github.com>
18 lines
457 B
C#
18 lines
457 B
C#
using Content.Server.Interfaces;
|
|
using Robust.Shared.GameObjects.Systems;
|
|
using Robust.Shared.IoC;
|
|
|
|
namespace Content.Server.GameObjects.EntitySystems.DeviceNetwork
|
|
{
|
|
internal sealed class DeviceNetworkSystem : EntitySystem
|
|
{
|
|
[Dependency] private readonly IDeviceNetwork _network = default!;
|
|
|
|
public override void Update(float frameTime)
|
|
{
|
|
base.Update(frameTime);
|
|
_network.Update();
|
|
}
|
|
}
|
|
}
|