diff options
| author | LLLL Colonq <llll@colonq> | 2025-07-28 01:41:31 -0400 |
|---|---|---|
| committer | LLLL Colonq <llll@colonq> | 2025-07-28 01:41:31 -0400 |
| commit | 4fb92d6fa3ce2d93c2ce720429f46aa104972674 (patch) | |
| tree | 34621666e2aec4af0ae59cd7e002f5022c83dad4 /crates/client/src/lib.rs | |
| parent | 86862272e9cdb7a8358db91ec4bea3edbacf2e97 (diff) | |
Update
Diffstat (limited to 'crates/client/src/lib.rs')
| -rw-r--r-- | crates/client/src/lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
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); } |
