Baseline input and replay setup done. Needs testing and fixes

This commit is contained in:
2024-02-08 10:50:36 -05:00
parent f27245f7a2
commit 9b4ceeffda
8 changed files with 805 additions and 34 deletions

18
code/math.odin Normal file
View File

@ -0,0 +1,18 @@
package sectr
// TODO(Ed) : Evaluate if this is needed
vec3 :: vec3_f32
vec3_f32 :: struct #raw_union {
basis : [3] f32,
using components : struct {
x, y, z : f32
}
}