mirror of https://github.com/MingweiSamuel/Riven
30 lines
737 B
Plaintext
30 lines
737 B
Plaintext
{{
|
|
const dotUtils = require('./dotUtils.js');
|
|
const gameModes = require('./.gameModes.json');
|
|
}}{{= dotUtils.preamble() }}
|
|
|
|
use strum_macros::{ EnumString, Display, AsRefStr, IntoStaticStr };
|
|
|
|
/// League of Legends game mode, such as Classic,
|
|
/// ARAM, URF, One For All, Ascension, etc.
|
|
#[cfg_attr(feature = "nightly", non_exhaustive)]
|
|
#[derive(Debug, Copy, Clone)]
|
|
#[derive(Eq, PartialEq, Hash)]
|
|
#[derive(EnumString, Display, AsRefStr, IntoStaticStr)]
|
|
#[repr(u8)]
|
|
pub enum GameMode {
|
|
{{
|
|
for (const e of gameModes) {
|
|
const desc = e['x-desc'] ? e['x-desc'].split('\n') : [];
|
|
}}
|
|
{{~ desc :line }}
|
|
/// {{= line }}
|
|
{{~}}
|
|
{{= e['x-name'] }},
|
|
{{
|
|
}
|
|
}}
|
|
}
|
|
|
|
serde_string!(GameMode);
|