summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNao Pross <naopross@thearcway.org>2018-12-17 00:38:46 +0100
committerNao Pross <naopross@thearcway.org>2018-12-17 00:38:46 +0100
commit4ba117d256a8484e5ddcd991ecef42d7a4b5c7f3 (patch)
treed9d37342fcdd05a1ff3c61a02fffdc1c931941bd /src
parentInitial commit (diff)
downloadSubconscious-rs-4ba117d256a8484e5ddcd991ecef42d7a4b5c7f3.tar.gz
Subconscious-rs-4ba117d256a8484e5ddcd991ecef42d7a4b5c7f3.zip
Create basic structure
Diffstat (limited to 'src')
-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();
}