Delta-v/Content.Shared/Interfaces/GameObjects/Components/Interaction/IRadiationAct.cs

14 lines
375 B
C#

#nullable enable
using Content.Shared.GameObjects.Components;
using Robust.Shared.Analyzers;
using Robust.Shared.GameObjects;
namespace Content.Shared.Interfaces.GameObjects.Components
{
[RequiresExplicitImplementation]
public interface IRadiationAct : IComponent
{
void RadiationAct(float frameTime, SharedRadiationPulseComponent radiation);
}
}