mirror of
https://github.com/DumbDev69420/EscapeTheBackrooms_Internal.git
synced 2025-06-29 02:12:24 +08:00
17 lines
308 B
C++
17 lines
308 B
C++
#ifndef CPR_FILE_H
|
|
#define CPR_FILE_H
|
|
|
|
#include <string>
|
|
|
|
namespace cpr {
|
|
|
|
struct File {
|
|
explicit File(std::string&& p_filepath) : filepath(std::move(p_filepath)) {}
|
|
explicit File(const std::string& p_filepath) : filepath(p_filepath) {}
|
|
const std::string filepath;
|
|
};
|
|
|
|
} // namespace cpr
|
|
|
|
#endif
|