diff options
Diffstat (limited to 'NorthstarDLL/mods/modsavefiles.h')
-rw-r--r-- | NorthstarDLL/mods/modsavefiles.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/NorthstarDLL/mods/modsavefiles.h b/NorthstarDLL/mods/modsavefiles.h new file mode 100644 index 00000000..a50fe62c --- /dev/null +++ b/NorthstarDLL/mods/modsavefiles.h @@ -0,0 +1,16 @@ +#pragma once +int GetMaxSaveFolderSize(); +bool ContainsInvalidChars(std::string str); + +class SaveFileManager +{ + public: + template <ScriptContext context> void SaveFileAsync(fs::path file, std::string content); + template <ScriptContext context> int LoadFileAsync(fs::path file); + template <ScriptContext context> void DeleteFileAsync(fs::path file); + // Future proofed in that if we ever get multi-threaded SSDs this code will take advantage of them. + std::mutex fileMutex; + + private: + int m_iLastRequestHandle = 0; +}; |