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