aboutsummaryrefslogtreecommitdiff
path: root/code
diff options
context:
space:
mode:
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
+ }
+
}