Riven/srcgen/consts/game_mode.rs.dt

30 lines
737 B
Plaintext
Raw Normal View History

2019-10-26 02:41:41 +00:00
{{
const dotUtils = require('./dotUtils.js');
const gameModes = require('./.gameModes.json');
}}{{= dotUtils.preamble() }}
use strum_macros::{ EnumString, Display, AsRefStr, IntoStaticStr };
2019-10-26 02:41:41 +00:00
/// League of Legends game mode, such as Classic,
/// ARAM, URF, One For All, Ascension, etc.
2019-11-07 20:45:13 +00:00
#[cfg_attr(feature = "nightly", non_exhaustive)]
2019-10-26 02:41:41 +00:00
#[derive(Debug, Copy, Clone)]
#[derive(Eq, PartialEq, Hash)]
#[derive(EnumString, Display, AsRefStr, IntoStaticStr)]
2019-10-26 02:41:41 +00:00
#[repr(u8)]
pub enum GameMode {
{{
for (const e of gameModes) {
const desc = e['x-desc'] ? e['x-desc'].split('\n') : [];
2019-10-26 02:41:41 +00:00
}}
{{~ desc :line }}
/// {{= line }}
{{~}}
{{= e['x-name'] }},
2019-10-26 02:41:41 +00:00
{{
}
}}
}
2019-10-26 05:19:00 +00:00
serde_string!(GameMode);