6
StarHorizon_Public/Content.Shared/Roles/StartingGearEquippedEvent.cs
2025-08-05 10:00:54 +03:00

11 lines
278 B
C#

namespace Content.Shared.Roles;
/// <summary>
/// Raised directed on an entity when a new starting gear prototype has been equipped.
/// </summary>
[ByRefEvent]
public record struct StartingGearEquippedEvent(EntityUid Entity)
{
public readonly EntityUid Entity = Entity;
}