mirror of
https://github.com/aap/librw.git
synced 2024-11-25 13:15:43 +00:00
16 lines
179 B
C
16 lines
179 B
C
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);
|