summaryrefslogtreecommitdiff
path: root/WebInterface/wasm/asm-paint/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'WebInterface/wasm/asm-paint/src/lib.rs')
-rw-r--r--WebInterface/wasm/asm-paint/src/lib.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/WebInterface/wasm/asm-paint/src/lib.rs b/WebInterface/wasm/asm-paint/src/lib.rs
index 432c370..945f2b1 100644
--- a/WebInterface/wasm/asm-paint/src/lib.rs
+++ b/WebInterface/wasm/asm-paint/src/lib.rs
@@ -1,4 +1,5 @@
mod client_logger;
+mod shader;
mod canvas;
mod site;
mod app;
@@ -14,7 +15,7 @@ pub fn entry() {
info!("begin running wasm application");
- let app = app::App::new().unwrap();
+ let mut app = app::App::new().unwrap();
app.run();
}