1
0

ChemicalFuelGeneratorDirectSourceComponent.cs 492 B

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