hopalong orbit viewer; also bezier patches in playground

This commit is contained in:
aap
2021-11-25 14:17:44 +01:00
parent 7dd7ec184d
commit 50c8f9ec7f
8 changed files with 1317 additions and 15 deletions

15
tools/hopalong/vfs.h Normal file
View File

@@ -0,0 +1,15 @@
struct VFS_file
{
const char *name;
rw::uint8 *data;
rw::uint32 length;
};
struct VFS
{
// TODO: directories?
VFS_file *files;
int numFiles;
};
void installVFS(VFS *vfs);