mirror of https://github.com/MingweiSamuel/Riven
20 lines
501 B
Plaintext
20 lines
501 B
Plaintext
{{
|
|
const dotUtils = require('./dotUtils.js');
|
|
const seasons = require('./.seasons.json');
|
|
}}{{= 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) {
|
|
let name = season.replace(' ', '');
|
|
name = dotUtils.changeCase.pascalCase(name).padEnd(13);
|
|
}}
|
|
{{= name }} = {{= id }},
|
|
{{
|
|
}
|
|
}}
|
|
} |