Microwave ECS (#10766)
* microwave ECS * allcomponentdelete etset ack * container purge
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using Content.Shared.Kitchen;
|
||||
|
||||
namespace Content.Server.Kitchen.Components;
|
||||
|
||||
/// <summary>
|
||||
/// Attached to a microwave that is currently in the process of cooking
|
||||
/// </summary>
|
||||
[RegisterComponent]
|
||||
public sealed class ActiveMicrowaveComponent : Component
|
||||
{
|
||||
[ViewVariables(VVAccess.ReadWrite)]
|
||||
public float CookTimeRemaining;
|
||||
|
||||
[ViewVariables(VVAccess.ReadWrite)]
|
||||
public float TotalTime;
|
||||
|
||||
[ViewVariables]
|
||||
public (FoodRecipePrototype?, int) PortionedRecipe;
|
||||
}
|
||||
Reference in New Issue
Block a user