16 lines
489 B
C#
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);
|
|
}
|
|
}
|
|
}
|