2024-09-26 18:32:13 +02:00
|
|
|
namespace Content.Shared.Voting;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Standard vote types that players can initiate themselves from the escape menu.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public enum StandardVoteType : byte
|
2021-07-21 19:03:10 +02:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
2024-09-26 18:32:13 +02:00
|
|
|
/// Vote to restart the round.
|
|
|
|
|
/// </summary>
|
|
|
|
|
Restart,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Vote to change the game preset for next round.
|
2021-07-21 19:03:10 +02:00
|
|
|
/// </summary>
|
2024-09-26 18:32:13 +02:00
|
|
|
Preset,
|
2021-07-21 19:03:10 +02:00
|
|
|
|
2024-09-26 18:32:13 +02:00
|
|
|
/// <summary>
|
|
|
|
|
/// Vote to change the map for the next round.
|
|
|
|
|
/// </summary>
|
|
|
|
|
Map,
|
2021-11-11 23:25:57 -07:00
|
|
|
|
2024-09-26 18:32:13 +02:00
|
|
|
/// <summary>
|
|
|
|
|
/// Vote to kick a player.
|
|
|
|
|
/// </summary>
|
|
|
|
|
Votekick
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Reasons available to initiate a votekick.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public enum VotekickReasonType : byte
|
|
|
|
|
{
|
|
|
|
|
Raiding,
|
|
|
|
|
Cheating,
|
|
|
|
|
Spam
|
2021-07-21 19:03:10 +02:00
|
|
|
}
|