2024-01-28 18:37:24 +07:00
|
|
|
|
namespace Content.Shared._White.Supermatter.Components;
|
2024-01-22 18:32:33 +07:00
|
|
|
|
|
|
|
|
|
|
[RegisterComponent]
|
|
|
|
|
|
public sealed partial class SupermatterFoodComponent : Component
|
|
|
|
|
|
{
|
|
|
|
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
|
|
|
|
[DataField("energy")]
|
|
|
|
|
|
public int Energy { get; set; } = 1;
|
|
|
|
|
|
}
|