20 lines
565 B
C#
20 lines
565 B
C#
|
|
using Content.Server.GameObjects.Components.Atmos;
|
|||
|
|
using Content.Server.GameObjects.Components.Recycling;
|
|||
|
|
using JetBrains.Annotations;
|
|||
|
|
using Robust.Shared.GameObjects.Systems;
|
|||
|
|
|
|||
|
|
namespace Content.Server.GameObjects.EntitySystems
|
|||
|
|
{
|
|||
|
|
[UsedImplicitly]
|
|||
|
|
internal sealed class GasCanisterSystem : EntitySystem
|
|||
|
|
{
|
|||
|
|
public override void Update(float frameTime)
|
|||
|
|
{
|
|||
|
|
foreach (var component in ComponentManager.EntityQuery<GasCanisterComponent>())
|
|||
|
|
{
|
|||
|
|
component.Update(frameTime);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|