Files
tbd-station-14/Content.Server/Power/Generator/ChemicalFuelGeneratorDirectSourceComponent.cs

15 lines
492 B
C#

namespace Content.Server.Power.Generator;
/// <summary>
/// This is used for stuff that can directly be shoved into a generator.
/// </summary>
[RegisterComponent, Access(typeof(GeneratorSystem))]
public sealed partial class ChemicalFuelGeneratorDirectSourceComponent : Component
{
/// <summary>
/// The solution to pull fuel material from.
/// </summary>
[DataField("solution", required: true), ViewVariables(VVAccess.ReadWrite)]
public string Solution = default!;
}