forked from mirror/Riven
1
0
Fork 0
Riven/srcgen/consts/season.rs.dt

21 lines
503 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 }},
{{
}
}}
}