forked from mirror/Riven
27 lines
558 B
Plaintext
27 lines
558 B
Plaintext
{{
|
|
const dotUtils = require('./dotUtils.js');
|
|
const maps = require('./.maps.json');
|
|
}}{{= dotUtils.preamble() }}
|
|
|
|
use serde::{ Serialize, Deserialize };
|
|
|
|
newtype_enum! {
|
|
/// A League of Legends map.
|
|
#[derive(Serialize, Deserialize)]
|
|
#[serde(transparent)]
|
|
pub newtype_enum Map(u8) {
|
|
{{
|
|
for (const e of maps) {
|
|
const desc = e['x-desc'] ? e['x-desc'].split('\n') : [];
|
|
}}
|
|
/// `{{= e['x-value'] }}`.
|
|
{{~ desc :line }}
|
|
/// {{= line }}
|
|
{{~}}
|
|
{{= e['x-name'] }} = {{= e['x-value'] }},
|
|
{{
|
|
}
|
|
}}
|
|
}
|
|
}
|