aboutsummaryrefslogtreecommitdiff
path: root/code
diff options
context:
space:
mode:
authorGinger Bill <bill@gingerbill.org>2016-10-02 21:45:24 +0100
committerGinger Bill <bill@gingerbill.org>2016-10-02 21:45:24 +0100
commitf6589d9814e2e26bee9b7941a23b4bef68582f2f (patch)
tree0935e3f379dfe430b33f456325e0825f250b1eea /code
parent264fc1e1f3006b3a9c6f25feab776ad6c7f32a25 (diff)
Refactor: Remove dead code
Diffstat (limited to 'code')
-rw-r--r--code/demo.odin15
1 files changed, 8 insertions, 7 deletions
diff --git a/code/demo.odin b/code/demo.odin
index 5d188eee3..17d3bf52a 100644
--- a/code/demo.odin
+++ b/code/demo.odin
@@ -4,12 +4,13 @@
#import "mem.odin"
#import "game.odin"
-Vec3 :: struct {
- x, y, z: f32
-}
-
main :: proc() {
- v0 := V
- v1 := V
- v2 := V
+ Vector3 :: struct {
+ x, y, z: f32
+ }
+ Entity :: struct {
+ guid: u64
+ position: Vector3
+ }
+
}