summaryrefslogtreecommitdiff
path: root/src/main.rs
blob: f7c2a8820eb0be5007821e62d02c75de63410064 (plain)
1
2
3
4
5
6
7
8
#[cfg(target_arch = "wasm32")]
pub fn main() {}

#[cfg(not(target_arch = "wasm32"))]
#[tokio::main]
pub async fn main() {
    teleia::run("teleia test", 240, 160, teleia::Options::empty(), teleia::TestGame::new).await;
}