Files
tbd-station-14/Content.Shared/Weapons/Ranged/Components/ContainerAmmoProviderComponent.cs
2023-01-16 08:56:09 -08:00

14 lines
382 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Weapons.Ranged.Components;
/// <summary>
/// Handles pulling entities from the given container to use as ammunition.
/// </summary>
[RegisterComponent]
public sealed class ContainerAmmoProviderComponent : AmmoProviderComponent
{
[DataField("container", required: true)]
public string Container = default!;
}