Files

10 lines
256 B
C#
Raw Permalink Normal View History

namespace Content.Shared._White.Supermatter.Components;
[RegisterComponent]
public sealed partial class SupermatterFoodComponent : Component
{
[ViewVariables(VVAccess.ReadWrite)]
[DataField("energy")]
public int Energy { get; set; } = 1;
}