working on loading mesh data

This commit is contained in:
2025-03-29 16:21:30 -06:00
parent d0cac74dd0
commit 6b120a617c
4 changed files with 80 additions and 5 deletions

6
include/mesh.h Normal file
View File

@ -0,0 +1,6 @@
#include "math3d.h"
struct mesh {
VECTOR *verticies;
};
int load_file(const char *fname, char *b, int b_len);