6
2025-08-05 10:00:54 +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;
}