mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-25 01:27:06 +03:00
12 lines
289 B
C#
12 lines
289 B
C#
using Robust.Shared.Analyzers;
|
|
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Shared.Radiation
|
|
{
|
|
[RequiresExplicitImplementation]
|
|
public interface IRadiationAct : IComponent
|
|
{
|
|
void RadiationAct(float frameTime, SharedRadiationPulseComponent radiation);
|
|
}
|
|
}
|