forked from NewEriduPubSec/JaneDoe-ZS
Implement Combat commissions (PureHollowBattle and LongFight) (including Rally commissions) Refactor some battle structures Unlock hollow quests (QuestInfo and YorozuyaInfo)
10 lines
219 B
Rust
10 lines
219 B
Rust
use serde::Deserialize;
|
|
|
|
template_id!(HollowConfig u32 id);
|
|
|
|
#[derive(Deserialize, Debug)]
|
|
#[serde(rename_all = "PascalCase")]
|
|
pub struct HollowConfigTemplate {
|
|
#[serde(rename = "ID")]
|
|
pub id: HollowConfigID,
|
|
}
|