File.h 203 B

12345678910111213141516
  1. #ifndef CORE_FILE_H
  2. #define CORE_FILE_H
  3. #include "math/Vector.h"
  4. #include "utils/ArrayString.h"
  5. namespace Core {
  6. class File final {
  7. void* file;
  8. public:
  9. File();
  10. };
  11. }
  12. #endif