* Finish level saving.

This commit is contained in:
iProgramInCpp
2023-08-02 13:15:25 +03:00
parent 16e2b79165
commit 450cb190b6
22 changed files with 1005 additions and 29 deletions

View File

@@ -9,6 +9,8 @@
#include "MemoryLevelStorage.hpp"
#include "MemoryLevelStorageSource.hpp"
#ifdef DEMO
std::string MemoryLevelStorageSource::getName()
{
return "Memory Storage";
@@ -52,7 +54,9 @@ bool MemoryLevelStorageSource::requiresConversion(const std::string& x)
return false;
}
void MemoryLevelStorageSource::convertLevel(const std::string& x, ProgressListener* y)
int MemoryLevelStorageSource::convertLevel(const std::string& x, ProgressListener* y)
{
return 0;
}
#endif