using Content.Shared.Mind;
namespace Content.Shared.Roles;
///
/// Raised on mind entities when a mind role is removed from them.
///
/// The mind id associated with the player.
/// The mind component associated with the mind id.
/// True if this update has changed the mind's role type
public sealed record RoleRemovedEvent(EntityUid MindId, MindComponent Mind, bool RoleTypeUpdate) : RoleEvent(MindId, Mind, RoleTypeUpdate);