2023-08-30 21:46:11 -07:00
|
|
|
|
namespace Content.Shared.Roles;
|
2023-08-29 15:50:23 -07:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Raised on mind entities when a role is added to them.
|
|
|
|
|
|
/// <see cref="RoleAddedEvent"/> for the one raised on player entities.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[ByRefEvent]
|
2023-08-30 21:06:15 -04:00
|
|
|
|
public readonly record struct MindRoleAddedEvent(bool Silent);
|