using Content.Shared.Mind;
namespace Content.Shared.Roles;
///
/// Event raised on player entities to indicate that a role was removed from their mind.
///
/// The mind id associated with the player.
/// The mind component associated with the mind id.
///
/// Whether or not the role made the player an antagonist.
/// They may still be one due to one of their other roles.
///
public sealed record RoleRemovedEvent(EntityUid MindId, MindComponent Mind, bool Antagonist) : RoleEvent(MindId, Mind, Antagonist);