mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-14 19:29:53 +01:00
* Entity<T>, skipping Magazine and ChamberMagazine * missed some * AUGH!! * ballistic examine * dotnet hates me * WHY ARE YOU CALLED THAT!!!! * cheers aada
11 lines
290 B
C#
11 lines
290 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;
|
|
}
|