2024-01-12 03:42:41 -05:00
|
|
|
namespace Content.Server.Kitchen.Components;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Attached to an object that's actively being microwaved
|
|
|
|
|
/// </summary>
|
|
|
|
|
[RegisterComponent]
|
|
|
|
|
public sealed partial class ActivelyMicrowavedComponent : Component
|
|
|
|
|
{
|
2025-02-27 13:39:06 +01:00
|
|
|
/// <summary>
|
|
|
|
|
/// The microwave this entity is actively being microwaved by.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[DataField]
|
|
|
|
|
public EntityUid? Microwave;
|
2024-01-12 03:42:41 -05:00
|
|
|
}
|