aboutsummaryrefslogtreecommitdiff
path: root/code
diff options
context:
space:
mode:
authorGinger Bill <bill@gingerbill.org>2016-12-03 00:16:51 +0000
committerGinger Bill <bill@gingerbill.org>2016-12-03 00:16:51 +0000
commit0b87313f08bb657aa9dd921928b778e8c9e161a0 (patch)
treef98ae81f4d7cf25e49faa44844829cbad6fa3578 /code
parent4bb45700a50b12bc5176fcb3e2f32ce5967b0ae8 (diff)
Change entity collection strategy
Diffstat (limited to 'code')
-rw-r--r--code/demo.odin4
1 files changed, 2 insertions, 2 deletions
diff --git a/code/demo.odin b/code/demo.odin
index 7ea6c9f28..3bd1588e6 100644
--- a/code/demo.odin
+++ b/code/demo.odin
@@ -1,6 +1,6 @@
-#import "fmt.odin";
+#import "game.odin";
main :: proc() {
- fmt.println("Hellope");
+ game.run();
}