feat(tournaments & demo mode): demo mode can be changed at runtime

This commit is contained in:
2025-12-31 16:10:32 -05:00
Unverified
parent fff0343559
commit cbff8c7c60
4 changed files with 64 additions and 22 deletions

View File

@@ -16,4 +16,5 @@ pub trait Tournament {
async fn start(&mut self, server: &Server);
async fn cancel(&mut self, server: &Server);
fn is_completed(&self) -> bool;
fn get_type(&self) -> String;
}