2019-10-23 07:49:02 +00:00
|
|
|
{{
|
|
|
|
const dotUtils = require('./dotUtils.js');
|
|
|
|
const seasons = require('./.seasons.json');
|
|
|
|
}}{{= dotUtils.preamble() }}
|
|
|
|
|
2019-10-26 05:19:00 +00:00
|
|
|
use serde_repr::{ Serialize_repr, Deserialize_repr };
|
2019-10-26 16:23:58 +00:00
|
|
|
use num_enum::{ IntoPrimitive, TryFromPrimitive };
|
2019-10-26 05:19:00 +00:00
|
|
|
|
2019-10-23 07:49:02 +00:00
|
|
|
/// League of Legends matchmaking seasons.
|
2019-11-07 20:45:13 +00:00
|
|
|
#[cfg_attr(feature = "nightly", non_exhaustive)]
|
2019-10-26 02:25:48 +00:00
|
|
|
#[derive(Debug, Copy, Clone)]
|
|
|
|
#[derive(Eq, PartialEq, Hash, PartialOrd, Ord)]
|
2019-10-26 05:19:00 +00:00
|
|
|
#[derive(Serialize_repr, Deserialize_repr)]
|
2019-10-26 16:23:58 +00:00
|
|
|
#[derive(IntoPrimitive, TryFromPrimitive)]
|
2019-10-26 02:25:48 +00:00
|
|
|
#[repr(u8)]
|
2019-10-23 07:49:02 +00:00
|
|
|
pub enum Season {
|
|
|
|
{{
|
|
|
|
for (const { id, season } of seasons) {
|
2019-10-27 08:52:55 +00:00
|
|
|
const name = season.replace(' ', '_');
|
2019-10-23 07:49:02 +00:00
|
|
|
}}
|
|
|
|
{{= name }} = {{= id }},
|
|
|
|
{{
|
|
|
|
}
|
|
|
|
}}
|
2019-10-26 02:52:43 +00:00
|
|
|
}
|