forked from NewEriduPubSec/JaneDoe-ZS
Implement Combat commissions (PureHollowBattle and LongFight) (including Rally commissions) Refactor some battle structures Unlock hollow quests (QuestInfo and YorozuyaInfo)
16 lines
408 B
Rust
16 lines
408 B
Rust
use serde::Deserialize;
|
|
|
|
use super::BattleEventConfigID;
|
|
|
|
template_id!(BattleGroupConfig u32 id);
|
|
|
|
#[derive(Deserialize, Debug)]
|
|
#[serde(rename_all = "PascalCase")]
|
|
pub struct BattleGroupConfigTemplate {
|
|
#[serde(rename = "ID")]
|
|
pub id: BattleGroupConfigID,
|
|
#[serde(rename = "QuestID")]
|
|
pub quest_id: u32,
|
|
#[serde(rename = "BattleEventID")]
|
|
pub battle_event_id: BattleEventConfigID,
|
|
}
|