This repository has been archived on 2024-12-20. You can view files and clone it, but cannot push or open issues or pull requests.
YanagiZS/crates/game-server/src/rpc_ptc/embattles.rs
2024-11-25 02:17:19 +03:00

20 lines
515 B
Rust

use super::*;
pub async fn on_rpc_get_embattles_data_arg(
_: &RpcPtcContext,
_: &mut PlayerSession,
_: RpcGetEmbattlesDataArg,
) -> Result<RpcGetEmbattlesDataRet, i32> {
Ok(RpcGetEmbattlesDataRet {
retcode: 0,
embattles_data: EmbattlesData::default(),
})
}
pub async fn on_rpc_report_embattle_info_arg(
_: &RpcPtcContext,
_: &mut PlayerSession,
_: RpcReportEmbattleInfoArg,
) -> Result<RpcReportEmbattleInfoRet, i32> {
Ok(RpcReportEmbattleInfoRet::default())
}