ChemicalAmmoComponent.cs 320 B

1234567891011
  1. namespace Content.Server.Weapons.Ranged.Components
  2. {
  3. [RegisterComponent]
  4. public sealed partial class ChemicalAmmoComponent : Component
  5. {
  6. public const string DefaultSolutionName = "ammo";
  7. [DataField("solution")]
  8. public string SolutionName { get; set; } = DefaultSolutionName;
  9. }
  10. }