2021-08-21 09:18:23 +02:00
|
|
|
using Content.Shared.Nutrition.EntitySystems;
|
|
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Nutrition.Components
|
|
|
|
|
{
|
2022-06-07 15:26:28 +02:00
|
|
|
[Access(typeof(SharedCreamPieSystem))]
|
2021-08-21 09:18:23 +02:00
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class CreamPiedComponent : Component
|
2021-08-21 09:18:23 +02:00
|
|
|
{
|
|
|
|
|
[ViewVariables]
|
|
|
|
|
public bool CreamPied { get; set; } = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
public enum CreamPiedVisuals
|
|
|
|
|
{
|
|
|
|
|
Creamed,
|
|
|
|
|
}
|
|
|
|
|
}
|