This commit is contained in:
amizing25
2024-05-29 15:56:07 +07:00
parent 278a32ea98
commit dfa7f3cd2d
11 changed files with 560 additions and 102 deletions
+12 -8
View File
@@ -1,13 +1,15 @@
mod authentication;
mod avatar;
mod battle;
mod chat;
mod inventory;
mod lineup;
mod mail;
mod mission;
mod player;
mod scene;
mod tutorial;
mod inventory;
mod chat;
mod gacha;
use anyhow::Result;
use paste::paste;
@@ -20,13 +22,15 @@ use crate::net::NetPacket;
pub use authentication::*;
pub use avatar::*;
pub use battle::*;
pub use chat::*;
pub use inventory::*;
pub use lineup::*;
pub use mail::*;
pub use mission::*;
pub use player::*;
pub use scene::*;
pub use tutorial::*;
pub use inventory::*;
pub use chat::*;
pub use gacha::*;
#[allow(unused_imports)]
use proto::{
@@ -53,7 +57,6 @@ use proto::{
CmdWolfBroType::*,
};
macro_rules! dummy {
($($cmd:ident),* $(,)*) => {
paste! {
@@ -95,7 +98,7 @@ dummy! {
// SceneEntityMove,
GetLevelRewardTakenList,
GetRogueScoreRewardInfo,
GetGachaInfo,
// GetGachaInfo,
QueryProductInfo,
GetQuestData,
GetQuestRecord,
@@ -136,6 +139,7 @@ dummy! {
GetVideoVersionKey,
GetCurBattleInfo,
GetPhoneData,
PlayerLoginFinish,
InteractProp
// PlayerLoginFinish,
InteractProp,
FinishTalkMission
}