Files
tbd-station-14/Content.Server/Weapon/Ranged/Ammunition/Components/ChemicalAmmoComponent.cs
2022-02-02 14:35:40 +11:00

15 lines
410 B
C#

using Robust.Shared.GameObjects;
using Robust.Shared.Serialization.Manager.Attributes;
namespace Content.Server.Weapon.Ranged.Ammunition.Components
{
[RegisterComponent]
public sealed class ChemicalAmmoComponent : Component
{
public const string DefaultSolutionName = "ammo";
[DataField("solution")]
public string SolutionName { get; set; } = DefaultSolutionName;
}
}