summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index f79c691..8de52c0 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,2 +1,8 @@
+mod game;
+mod graphics;
+
+
fn main() {
+ game::start();
+ graphics::start();
}