2022-05-13 00:59:03 -07:00
|
|
|
|
namespace Content.Shared.Temperature
|
2021-09-22 11:05:33 +02:00
|
|
|
|
{
|
|
|
|
|
|
/// <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>
|
2022-02-16 00:23:23 -07:00
|
|
|
|
public sealed class IsHotEvent : EntityEventArgs
|
2021-09-22 11:05:33 +02:00
|
|
|
|
{
|
|
|
|
|
|
public bool IsHot { get; set; } = false;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|