MixableSolutionComponent.cs 389 B

12345678910111213
  1. using Robust.Shared.GameStates;
  2. namespace Content.Shared.Chemistry.Components;
  3. [RegisterComponent, NetworkedComponent]
  4. public sealed partial class MixableSolutionComponent : Component
  5. {
  6. /// <summary>
  7. /// Solution name which can be mixed with methods such as blessing
  8. /// </summary>
  9. [DataField, ViewVariables(VVAccess.ReadWrite)]
  10. public string Solution = "default";
  11. }