1
0

ActivelyMicrowavedComponent.cs 379 B

1234567891011121314
  1. namespace Content.Server.Kitchen.Components;
  2. /// <summary>
  3. /// Attached to an object that's actively being microwaved
  4. /// </summary>
  5. [RegisterComponent]
  6. public sealed partial class ActivelyMicrowavedComponent : Component
  7. {
  8. /// <summary>
  9. /// The microwave this entity is actively being microwaved by.
  10. /// </summary>
  11. [DataField]
  12. public EntityUid? Microwave;
  13. }