forked from NewEriduPubSec/JaneDoe-ZS
Implement Combat commissions (PureHollowBattle and LongFight) (including Rally commissions) Refactor some battle structures Unlock hollow quests (QuestInfo and YorozuyaInfo)
13 lines
301 B
Rust
13 lines
301 B
Rust
use serde::Deserialize;
|
|
|
|
use super::BattleEventConfigID;
|
|
|
|
template_id!(TrainingQuest u32 id);
|
|
|
|
#[derive(Deserialize, Debug)]
|
|
#[serde(rename_all = "PascalCase")]
|
|
pub struct TrainingQuestTemplate {
|
|
pub id: TrainingQuestID,
|
|
pub training_type: u32,
|
|
pub battle_event_id: BattleEventConfigID,
|
|
}
|