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 } }