Files
tbd-station-14/Content.Server/Chemistry/ReactionEffects/SmokeAreaReactionEffect.cs
2022-05-13 17:59:03 +10:00

16 lines
489 B
C#

using Content.Server.Chemistry.Components;
using JetBrains.Annotations;
namespace Content.Server.Chemistry.ReactionEffects
{
[UsedImplicitly]
[DataDefinition]
public sealed class SmokeAreaReactionEffect : AreaReactionEffect
{
protected override SolutionAreaEffectComponent? GetAreaEffectComponent(EntityUid entity)
{
return IoCManager.Resolve<IEntityManager>().GetComponentOrNull<SmokeSolutionAreaEffectComponent>(entity);
}
}
}