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