forked from spacebar/rust-nex
8 lines
No EOL
229 B
Rust
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>;
|
|
} |