6
StarHorizon_Public/Content.Shared/Roles/StartingGearEquippedEvent.cs
2026-01-24 12:49:55 +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;
}