1
0

StandardVoteType.cs 710 B

12345678910111213141516171819202122232425262728293031323334353637
  1. namespace Content.Shared.Voting;
  2. /// <summary>
  3. /// Standard vote types that players can initiate themselves from the escape menu.
  4. /// </summary>
  5. public enum StandardVoteType : byte
  6. {
  7. /// <summary>
  8. /// Vote to restart the round.
  9. /// </summary>
  10. Restart,
  11. /// <summary>
  12. /// Vote to change the game preset for next round.
  13. /// </summary>
  14. Preset,
  15. /// <summary>
  16. /// Vote to change the map for the next round.
  17. /// </summary>
  18. Map,
  19. /// <summary>
  20. /// Vote to kick a player.
  21. /// </summary>
  22. Votekick
  23. }
  24. /// <summary>
  25. /// Reasons available to initiate a votekick.
  26. /// </summary>
  27. public enum VotekickReasonType : byte
  28. {
  29. Raiding,
  30. Cheating,
  31. Spam
  32. }