mirror of
https://github.com/MingweiSamuel/Riven.git
synced 2024-12-28 04:32:59 -08:00
9db4c1a4a5
#[non_exhaustive]
25 lines
658 B
Text
25 lines
658 B
Text
{{
|
|
const dotUtils = require('./dotUtils.js');
|
|
const seasons = require('./.seasons.json');
|
|
}}{{= dotUtils.preamble() }}
|
|
|
|
use serde_repr::{ Serialize_repr, Deserialize_repr };
|
|
use num_enum::{ IntoPrimitive, TryFromPrimitive };
|
|
|
|
/// League of Legends matchmaking seasons.
|
|
#[non_exhaustive]
|
|
#[derive(Debug, Copy, Clone)]
|
|
#[derive(Eq, PartialEq, Hash, PartialOrd, Ord)]
|
|
#[derive(Serialize_repr, Deserialize_repr)]
|
|
#[derive(IntoPrimitive, TryFromPrimitive)]
|
|
#[repr(u8)]
|
|
pub enum Season {
|
|
{{
|
|
for (const { id, season } of seasons) {
|
|
const name = season.replace(' ', '_');
|
|
}}
|
|
{{= name }} = {{= id }},
|
|
{{
|
|
}
|
|
}}
|
|
}
|