mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-16 02:42:22 -07:00
17 lines
217 B
Odin
17 lines
217 B
Odin
#import "fmt.odin"
|
|
#import "utf8.odin"
|
|
#import "hash.odin"
|
|
#import "mem.odin"
|
|
#import "game.odin"
|
|
|
|
main :: proc() {
|
|
Vector3 :: struct {
|
|
x, y, z: f32
|
|
}
|
|
Entity :: struct {
|
|
guid: u64
|
|
position: Vector3
|
|
}
|
|
|
|
}
|