pub fn start( player_name: String, warrior_level: usize, floor: Floor, player_generator: fn() -> Box<dyn Player + Send + Sync>, ) -> Result<(), String>
The entry point for the engine, called by Game
Game