6
StarHorizon_Public/Content.Server/Kitchen/Components/ActivelyMicrowavedComponent.cs
2026-01-24 12:49:55 +03:00

15 lines
379 B
C#

namespace Content.Server.Kitchen.Components;
/// <summary>
/// Attached to an object that's actively being microwaved
/// </summary>
[RegisterComponent]
public sealed partial class ActivelyMicrowavedComponent : Component
{
/// <summary>
/// The microwave this entity is actively being microwaved by.
/// </summary>
[DataField]
public EntityUid? Microwave;
}