namespace Content.Shared.Voting;
///
/// Standard vote types that players can initiate themselves from the escape menu.
///
public enum StandardVoteType : byte
{
///
/// Vote to restart the round.
///
Restart,
///
/// Vote to change the game preset for next round.
///
Preset,
///
/// Vote to change the map for the next round.
///
Map,
///
/// Vote to kick a player.
///
Votekick
}
///
/// Reasons available to initiate a votekick.
///
public enum VotekickReasonType : byte
{
Raiding,
Cheating,
Spam
}