6
2026-01-24 12:49:55 +03:00

11 lines
334 B
C#

namespace Content.Server._NF.Kitchen.Components;
// Denotes that an item cannot become crispy in the deep fryer, but should burn normally.
[RegisterComponent]
public sealed partial class PreventCrispingComponent : Component
{
// The number of cycles this has spent in the deep fryer.
[ViewVariables]
public int Cycles;
}