diff options
| author | LLLL Colonq <llll@colonq> | 2025-01-28 12:03:11 -0500 |
|---|---|---|
| committer | LLLL Colonq <llll@colonq> | 2025-01-28 12:03:11 -0500 |
| commit | 23d651bbad510f14484cf1c0a8081ffff890565e (patch) | |
| tree | 3645723cb9383bcf8ea3733d50d76ba1fe86e131 /src/lib.rs | |
| parent | f448de77d84b985047a332150c0382adc1836899 (diff) | |
Working overlay
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -mod newton; +mod common; #[cfg(target_arch = "wasm32")] use wasm_bindgen::prelude::*; @@ -6,5 +6,5 @@ use wasm_bindgen::prelude::*; #[cfg(target_arch = "wasm32")] #[wasm_bindgen] pub async fn main_js() { - teleia::run(240, 160, newton::client::Game::new).await; + teleia::run(240, 160, common::client::Game::new).await; } |
