Files
OldThink/Content.Server/Atmos/FireEvent.cs

10 lines
169 B
C#
Raw Normal View History

using Robust.Shared.GameObjects;
namespace Content.Server.Atmos
{
public interface IFireAct
{
void FireAct(float temperature, float volume);
}
}