mirror of
https://github.com/aap/librw.git
synced 2026-04-20 05:23:21 +01:00
hopalong orbit viewer; also bezier patches in playground
This commit is contained in:
15
tools/hopalong/vfs.h
Normal file
15
tools/hopalong/vfs.h
Normal 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);
|
||||
Reference in New Issue
Block a user