extract math util into sub package

This commit is contained in:
Morrígan 2025-06-28 15:08:49 +02:00
parent 538c8c215f
commit 60d71ae1c0
Signed by: morrigan
GPG key ID: CACB010F463A77D0
4 changed files with 35 additions and 8 deletions

9
util/math.odin Normal file
View file

@ -0,0 +1,9 @@
package util
Position :: struct {
x, y: f32,
}
Velocity :: struct {
x, y: f32,
}