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

27 lines
668 B
Plaintext

{{
const dotUtils = require('./dotUtils.js');
const gameModes = require('./.gameModes.json');
}}{{= dotUtils.preamble() }}
use strum_macros::{ EnumString, Display, AsRefStr };
/// League of Legends game mode, such as Classic,
/// ARAM, URF, One For All, Ascension, etc.
#[derive(Debug, Copy, Clone)]
#[derive(Eq, PartialEq, Hash)]
#[derive(EnumString, Display, AsRefStr)]
#[repr(u8)]
pub enum GameMode {
{{
for (const { gameMode, description } of gameModes) {
}}
/// {{= description }}
#[strum(to_string="{{= gameMode }}")]
{{= dotUtils.changeCase.pascalCase(gameMode) }},
{{
}
}}
}
serde_string!(GameMode);