forked from mirror/Riven
updating season enum traits
parent
5b4981f227
commit
561eb04c48
|
@ -2,6 +2,9 @@
|
|||
// Do not directly edit.
|
||||
|
||||
/// League of Legends matchmaking seasons.
|
||||
#[derive(Debug, Copy, Clone)]
|
||||
#[derive(Eq, PartialEq, Hash, PartialOrd, Ord)]
|
||||
#[repr(u8)]
|
||||
pub enum Season {
|
||||
Preseason3 = 0,
|
||||
Season3 = 1,
|
||||
|
|
|
@ -4,6 +4,9 @@
|
|||
}}{{= dotUtils.preamble() }}
|
||||
|
||||
/// League of Legends matchmaking seasons.
|
||||
#[derive(Debug, Copy, Clone)]
|
||||
#[derive(Eq, PartialEq, Hash, PartialOrd, Ord)]
|
||||
#[repr(u8)]
|
||||
pub enum Season {
|
||||
{{
|
||||
for (const { id, season } of seasons) {
|
||||
|
|
Loading…
Reference in New Issue