From d3bd791297d6aaa7abaf613aafbec99a7bb17823 Mon Sep 17 00:00:00 2001 From: LLLL Colonq Date: Sat, 2 May 2026 16:16:04 -0400 Subject: Eating soup! --- src/lib.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index 66f9771..0060ab3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,5 @@ mod game; +mod room; #[cfg(target_arch = "wasm32")] use wasm_bindgen::prelude::*; @@ -6,5 +7,7 @@ use wasm_bindgen::prelude::*; #[cfg(target_arch = "wasm32")] #[wasm_bindgen] pub fn main_js() { - teleia::run(240, 160, teleia::Options::empty(), game::Game::new); + teleia::run(240, 160, teleia::Options::empty(), + |ctx| game::Game::new(ctx, "broken path") + ); } -- cgit v1.2.3