From ea5929c74a4e01bcbc776832b5597fceb5261a31 Mon Sep 17 00:00:00 2001 From: LLLL Colonq Date: Tue, 28 Apr 2026 13:39:34 -0400 Subject: Initial commit --- src/main.rs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/main.rs (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..25a240d --- /dev/null +++ b/src/main.rs @@ -0,0 +1,9 @@ +mod game; + +#[cfg(not(target_arch = "wasm32"))] +pub fn main() -> teleia::Erm<()> { + teleia::run("game", 240, 160, teleia::Options::empty(), game::Game::new) +} + +#[cfg(target_arch = "wasm32")] +pub fn main() {} // dummy main, real wasm32 main is lib::main_js -- cgit v1.2.3