1
0

IsHotEvent.cs 351 B

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