karts/vertex/struct.odin

9 lines
121 B
Odin
Raw Normal View History

2025-02-16 11:28:18 +13:00
package vertex
import glm "core:math/linalg/glsl"
Vertex :: struct {
pos: glm.vec4,
texcoord: glm.vec2,
}