TemplateID::new now returns Result<T, TemplateNotFoundError> Cleanup code in some of new handlers
12 lines
291 B
Rust
12 lines
291 B
Rust
use serde::Deserialize;
|
|
|
|
template_id!(MainCityBgmConfig id);
|
|
|
|
#[derive(Deserialize, Debug)]
|
|
#[serde(rename_all = "PascalCase")]
|
|
pub struct MainCityBgmConfigTemplate {
|
|
#[serde(rename = "ID")]
|
|
pub id: MainCityBgmConfigID,
|
|
pub play_event_name: String,
|
|
pub state_name: String,
|
|
}
|