Refactor: Remove dead code

This commit is contained in:
Ginger Bill
2016-10-02 21:45:24 +01:00
parent 264fc1e1f3
commit f6589d9814
8 changed files with 111 additions and 161 deletions

View File

@@ -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
}
}