StartingGearEquippedEvent.cs 278 B

12345678910
  1. namespace Content.Shared.Roles;
  2. /// <summary>
  3. /// Raised directed on an entity when a new starting gear prototype has been equipped.
  4. /// </summary>
  5. [ByRefEvent]
  6. public record struct StartingGearEquippedEvent(EntityUid Entity)
  7. {
  8. public readonly EntityUid Entity = Entity;
  9. }