mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-27 02:27:46 +03:00
12 lines
320 B
C#
12 lines
320 B
C#
namespace Content.Server.Weapons.Ranged.Components
|
|
{
|
|
[RegisterComponent]
|
|
public sealed partial class ChemicalAmmoComponent : Component
|
|
{
|
|
public const string DefaultSolutionName = "ammo";
|
|
|
|
[DataField("solution")]
|
|
public string SolutionName { get; set; } = DefaultSolutionName;
|
|
}
|
|
}
|