Files
tbd-station-14/Content.Shared/Temperature/IsHotEvent.cs
2022-05-13 17:59:03 +10:00

12 lines
351 B
C#

namespace Content.Shared.Temperature
{
/// <summary>
/// Directed event raised on entities to query whether they're "hot" or not.
/// For example, a lit welder or matchstick would be hot, etc.
/// </summary>
public sealed class IsHotEvent : EntityEventArgs
{
public bool IsHot { get; set; } = false;
}
}