diff options
| author | Ginger Bill <bill@gingerbill.org> | 2016-10-03 23:28:37 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2016-10-03 23:28:37 +0100 |
| commit | fee504636f9cd7633217e1877ee1b99e555bba63 (patch) | |
| tree | 5e5150802c7c87ba82e77f2516bb7d746355dec6 /code | |
| parent | f6589d9814e2e26bee9b7941a23b4bef68582f2f (diff) | |
Code clean up of call arguments
Diffstat (limited to 'code')
| -rw-r--r-- | code/demo.odin | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/code/demo.odin b/code/demo.odin index 17d3bf52a..ff80f434d 100644 --- a/code/demo.odin +++ b/code/demo.odin @@ -5,12 +5,5 @@ #import "game.odin" main :: proc() { - Vector3 :: struct { - x, y, z: f32 - } - Entity :: struct { - guid: u64 - position: Vector3 - } - + fmt.println("Hellope") } |