mirror of
https://github.com/rrika/cdcEngineDXHR.git
synced 2024-11-23 05:29:57 +00:00
17 lines
306 B
C++
17 lines
306 B
C++
#pragma once
|
|
|
|
class ArchiveFileSystem;
|
|
|
|
namespace cdc {
|
|
|
|
class FileSystem;
|
|
extern ArchiveFileSystem *archiveFileSystem_default;
|
|
|
|
void createLowerFileSystems();
|
|
void createHigherFileSystems();
|
|
void destroyFileSystems();
|
|
cdc::FileSystem *getDefaultFileSystem();
|
|
char *FSHelper_ReadFile(const char *path);
|
|
|
|
}
|