aboutsummaryrefslogtreecommitdiff
path: root/code
diff options
context:
space:
mode:
authorGinger Bill <bill@gingerbill.org>2016-09-27 18:12:46 +0100
committerGinger Bill <bill@gingerbill.org>2016-09-27 18:12:46 +0100
commitf6bbd8a4c2206189c8c77f51b38a421d43d66e76 (patch)
tree60320177d2f94e701c3cdf6ab0170deb4bb55726 /code
parent006741908b6bc42a621549cf869c2227cdf82f7b (diff)
Fix minimal dependency for nested entities
Diffstat (limited to 'code')
-rw-r--r--code/demo.odin3
1 files changed, 3 insertions, 0 deletions
diff --git a/code/demo.odin b/code/demo.odin
index be7426d9f..3ac4c9395 100644
--- a/code/demo.odin
+++ b/code/demo.odin
@@ -1,5 +1,8 @@
#import "fmt.odin"
+#import "game.odin"
main :: proc() {
fmt.println("Hello")
+ game.run()
+
}