From 4fb92d6fa3ce2d93c2ce720429f46aa104972674 Mon Sep 17 00:00:00 2001 From: LLLL Colonq Date: Mon, 28 Jul 2025 01:41:31 -0400 Subject: Update --- crates/client/src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'crates/client/src/lib.rs') diff --git a/crates/client/src/lib.rs b/crates/client/src/lib.rs index 3298f07..d928d0e 100644 --- a/crates/client/src/lib.rs +++ b/crates/client/src/lib.rs @@ -1,10 +1,10 @@ -mod common; +mod client; #[cfg(target_arch = "wasm32")] use wasm_bindgen::prelude::*; #[cfg(target_arch = "wasm32")] #[wasm_bindgen] -pub async fn main_js() { - teleia::run(240, 160, common::client::Game::new).await; +pub fn main_js() { + teleia::run(240, 160, teleia::Options::empty(), client::Game::new); } -- cgit v1.2.3