HollowPS/gameserver/src/net/handlers/progression.rs
2024-03-19 08:30:08 +03:00

8 lines
210 B
Rust

use super::*;
pub async fn on_rpc_close_level_chg_tips_arg(
session: &NetworkSession,
_arg: &RpcCloseLevelChgTipsArg,
) -> Result<()> {
session.send_rpc_ret(RpcCloseLevelChgTipsRet::new()).await
}