Files
crystall-punk-14/Content.Server/Atmos/TileFireEvent.cs

19 lines
470 B
C#
Raw Permalink Normal View History

2022-02-20 17:43:20 +11:00
namespace Content.Server.Atmos
{
/// <summary>
/// Event raised directed to an entity when it is standing on a tile that's on fire.
/// </summary>
2022-02-20 17:43:20 +11:00
[ByRefEvent]
public readonly struct TileFireEvent
{
2022-02-20 17:43:20 +11:00
public readonly float Temperature;
public readonly float Volume;
public TileFireEvent(float temperature, float volume)
{
Temperature = temperature;
Volume = volume;
}
}
}