10 lines
169 B
C#
10 lines
169 B
C#
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Server.Atmos
|
|
{
|
|
public interface IFireAct
|
|
{
|
|
void FireAct(float temperature, float volume);
|
|
}
|
|
}
|