2019-10-23 07:49:02 +00:00
|
|
|
{{
|
|
|
|
const dotUtils = require('./dotUtils.js');
|
|
|
|
const seasons = require('./.seasons.json');
|
|
|
|
}}{{= dotUtils.preamble() }}
|
|
|
|
|
|
|
|
/// League of Legends matchmaking seasons.
|
2019-10-26 02:25:48 +00:00
|
|
|
#[derive(Debug, Copy, Clone)]
|
|
|
|
#[derive(Eq, PartialEq, Hash, PartialOrd, Ord)]
|
|
|
|
#[repr(u8)]
|
2019-10-23 07:49:02 +00:00
|
|
|
pub enum Season {
|
|
|
|
{{
|
|
|
|
for (const { id, season } of seasons) {
|
|
|
|
let name = season.replace(' ', '');
|
|
|
|
name = dotUtils.changeCase.pascalCase(name).padEnd(13);
|
|
|
|
}}
|
|
|
|
{{= name }} = {{= id }},
|
|
|
|
{{
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
}
|