GetAmmoCountEvent.cs 221 B

1234567891011
  1. namespace Content.Shared.Weapons.Ranged.Events;
  2. /// <summary>
  3. /// Raised on an AmmoProvider to request deets.
  4. /// </summary>
  5. [ByRefEvent]
  6. public struct GetAmmoCountEvent
  7. {
  8. public int Count;
  9. public int Capacity;
  10. }