namespace Content.Server._CP14.RoundLeave;
///
/// Allows a player to leave the round if they exit into a ghost while inside
///
[RegisterComponent]
public sealed partial class CP14RoundLeaveComponent : Component
{
}
///
/// Marker on entities. If a player goes ghost with this component, he leaves the round and regains the role.
///
[RegisterComponent]
public sealed partial class CP14RoundLeavingComponent : Component
{
[DataField]
public HashSet Leaver = new();
}