Added missing files

This commit is contained in:
MihailRis
2023-11-15 21:18:40 +03:00
parent fee25abb5e
commit 5af04e20d1
4 changed files with 170 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#ifndef FILES_ENGINE_FILES_H_
#define FILES_ENGINE_FILES_H_
#include <string>
#include <filesystem>
#define SCREENSHOTS_FOLDER "screenshots"
namespace enginefs {
extern std::filesystem::path get_screenshot_file(std::string ext);
extern std::filesystem::path get_worlds_folder();
}
#endif // FILES_ENGINE_FILES_H_