mirror of
https://github.com/DumbDev69420/EscapeTheBackrooms_Internal.git
synced 2025-06-30 18:42:25 +08:00
Made Project Buildable. Just realized Project cant be Build for Others
This commit is contained in:
16
EscapeTheBackroomsGUiTest/vcpkg_Out/include/cpr/file.h
Normal file
16
EscapeTheBackroomsGUiTest/vcpkg_Out/include/cpr/file.h
Normal file
@ -0,0 +1,16 @@
|
||||
#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
|
Reference in New Issue
Block a user