Files
tbd-station-14/Content.Server/Singularity/Components/SinguloFoodComponent.cs
2022-05-13 17:59:03 +10:00

14 lines
379 B
C#

namespace Content.Server.Singularity.Components
{
/// <summary>
/// Overrides exactly how much energy this object gives to a singularity.
/// </summary>
[RegisterComponent]
public sealed class SinguloFoodComponent : Component
{
[ViewVariables(VVAccess.ReadWrite)]
[DataField("energy")]
public int Energy { get; set; } = 1;
}
}