fumarole/math.odin

10 lines
86 B
Odin
Raw Normal View History

2025-06-22 21:35:03 +02:00
package main
Position :: struct {
x, y: f32,
}
2025-06-22 21:47:58 +02:00
Direction :: struct {
x, y: f32,
}