summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorJustin Worthe <justin@worthe-it.co.za>2017-12-26 13:04:37 +0200
committerJustin Worthe <justin@worthe-it.co.za>2017-12-26 13:04:37 +0200
commitbbce5d68e2a6007fc8b023bf694ec058373b718c (patch)
tree03c14e541f826ca1d1c380bc26589cd5b6826242 /src/lib.rs
parent5e0a70fa9b181637942d3d0d55f6a51c33fefbad (diff)
Moved overall model updating logic out of the GUI layer
This will be useful eventually for sharing a bit more overall application logic with the wasm build.
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index b053e0c..74aeaf1 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -14,3 +14,5 @@ pub mod audio;
#[cfg(target_os = "emscripten")]
pub mod emscripten_api;
+
+pub mod model;