summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2025-01-28 12:03:11 -0500
committerLLLL Colonq <llll@colonq>2025-01-28 12:03:11 -0500
commit23d651bbad510f14484cf1c0a8081ffff890565e (patch)
tree3645723cb9383bcf8ea3733d50d76ba1fe86e131 /src/lib.rs
parentf448de77d84b985047a332150c0382adc1836899 (diff)
Working overlay
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index de8c271..3298f07 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -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;
}