Wasm skeleton

This commit is contained in:
Manuel Vögele
2022-01-31 10:11:04 +01:00
parent 472b373f13
commit dc85609a75
10 changed files with 228 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
use wasm_bindgen::prelude::*;
#[wasm_bindgen(start)]
pub fn main() {
std::panic::set_hook(Box::new(console_error_panic_hook::hook))
}