rust-nex/src/rmc/protocols/matchmake_ext.rs
2025-06-29 11:40:42 +02:00

8 lines
No EOL
229 B
Rust

use macros::{method_id, rmc_proto};
use crate::rmc::response::ErrorCode;
#[rmc_proto(50)]
pub trait MatchmakeExt{
#[method_id(1)]
async fn end_participation(&self, gid: u32, message: String) -> Result<bool, ErrorCode>;
}