2
0

CmFileSystem.h 320 B

12345678910111213141516
  1. #pragma once
  2. #include "CmPrerequisitesUtil.h"
  3. namespace CamelotEngine
  4. {
  5. class CM_UTILITY_EXPORT FileSystem
  6. {
  7. public:
  8. static DataStreamPtr open(const String& fullPath, bool readOnly = true);
  9. static DataStreamPtr create(const String& fullPath);
  10. static void remove(const String& fullPath);
  11. };
  12. }