feat: match reservation system

This commit is contained in:
2026-01-28 14:33:49 -05:00
Unverified
parent 459aa83690
commit ec0acd4b06
5 changed files with 218 additions and 9 deletions

View File

@@ -15,7 +15,7 @@ pub trait Tournament {
async fn next(&mut self, server: &Server);
async fn start(&mut self, server: &Server);
async fn cancel(&mut self, server: &Server);
fn inform_winnder(&mut self, winner: SocketAddr, is_tie: bool);
fn inform_winner(&mut self, winner: SocketAddr, is_tie: bool);
fn is_completed(&self) -> bool;
fn get_type(&self) -> String;
}