summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/game.rs4
-rw-r--r--src/graphics.rs5
-rw-r--r--src/main.rs6
3 files changed, 15 insertions, 0 deletions
diff --git a/src/game.rs b/src/game.rs
new file mode 100644
index 0000000..36ed4b8
--- /dev/null
+++ b/src/game.rs
@@ -0,0 +1,4 @@
+
+pub fn start() {
+
+} \ No newline at end of file
diff --git a/src/graphics.rs b/src/graphics.rs
new file mode 100644
index 0000000..c3917af
--- /dev/null
+++ b/src/graphics.rs
@@ -0,0 +1,5 @@
+
+
+pub fn start() {
+
+} \ No newline at end of file
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();
}