mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 14:07:53 +03:00
9 lines
279 B
C#
9 lines
279 B
C#
namespace Content.Shared.Roles;
|
|
|
|
/// <summary>
|
|
/// Raised on mind entities when a role is added to them.
|
|
/// <see cref="RoleAddedEvent"/> for the one raised on player entities.
|
|
/// </summary>
|
|
[ByRefEvent]
|
|
public readonly record struct MindRoleAddedEvent(bool Silent);
|