aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDLL/mods/modsavefiles.h
diff options
context:
space:
mode:
Diffstat (limited to 'NorthstarDLL/mods/modsavefiles.h')
-rw-r--r--NorthstarDLL/mods/modsavefiles.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/NorthstarDLL/mods/modsavefiles.h b/NorthstarDLL/mods/modsavefiles.h
deleted file mode 100644
index f9d39723..00000000
--- a/NorthstarDLL/mods/modsavefiles.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#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;
-};