Files
crystall-punk-14/Content.Server/Weapons/Ranged/Components/ChemicalAmmoComponent.cs
metalgearsloth f51248ecaa Melee refactor (#10897)
Co-authored-by: metalgearsloth <metalgearsloth@gmail.com>
2022-09-29 15:51:59 +10:00

12 lines
312 B
C#

namespace Content.Server.Weapons.Ranged.Components
{
[RegisterComponent]
public sealed class ChemicalAmmoComponent : Component
{
public const string DefaultSolutionName = "ammo";
[DataField("solution")]
public string SolutionName { get; set; } = DefaultSolutionName;
}
}