2022-02-20 17:43:20 +11:00
|
|
|
|
namespace Content.Server.Atmos
|
2021-09-22 11:05:33 +02:00
|
|
|
|
{
|
|
|
|
|
|
/// <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
|
2021-09-22 11:05:33 +02:00
|
|
|
|
{
|
2022-02-20 17:43:20 +11:00
|
|
|
|
public readonly float Temperature;
|
|
|
|
|
|
public readonly float Volume;
|
2021-09-22 11:05:33 +02:00
|
|
|
|
|
|
|
|
|
|
public TileFireEvent(float temperature, float volume)
|
|
|
|
|
|
{
|
|
|
|
|
|
Temperature = temperature;
|
|
|
|
|
|
Volume = volume;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|