fix types in Mesh struct, adjust name

This commit is contained in:
Matthew 2025-11-22 19:01:35 +11:00
parent 443329b2dc
commit b3e2779c23

View File

@ -100,8 +100,8 @@ struct Mesh
{ {
Vertex[] vtx; Vertex[] vtx;
u32[] idx; u32[] idx;
u64 start; u32 offset;
u64 length; u32 length;
u32 mat_id; u32 mat_id;
} }