Files
11 lines
278 B
C#
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;
|
|||
}
|