fumarole/util/math.odin

10 lines
85 B
Odin
Raw Permalink Normal View History

2025-06-28 15:08:49 +02:00
package util
2025-06-22 21:35:03 +02:00
Position :: struct {
x, y: f32,
}
2025-06-22 21:47:58 +02:00
2025-06-28 15:08:49 +02:00
Velocity :: struct {
2025-06-22 21:47:58 +02:00
x, y: f32,
}