Files
crystall-punk-14/Content.Shared/Temperature/IsHotEvent.cs

12 lines
351 B
C#
Raw Permalink Normal View History

2022-05-13 00:59:03 -07:00
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;
}
}