File.hpp 167 B

123456789101112
  1. #ifndef CORE_FILE_HPP
  2. #define CORE_FILE_HPP
  3. #include <limits.h>
  4. #include "core/utils/ArrayString.hpp"
  5. namespace Core {
  6. using Path = String8<PATH_MAX>;
  7. }
  8. #endif