6
2026-01-24 12:49:55 +03:00

11 lines
221 B
C#

namespace Content.Shared.Weapons.Ranged.Events;
/// <summary>
/// Raised on an AmmoProvider to request deets.
/// </summary>
[ByRefEvent]
public struct GetAmmoCountEvent
{
public int Count;
public int Capacity;
}