* 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

@@ -10,6 +10,7 @@
#include "LevelStorageSource.hpp"
#ifdef DEMO
class MemoryLevelStorageSource : public LevelStorageSource
{
std::string getName() override;
@@ -21,6 +22,6 @@ class MemoryLevelStorageSource : public LevelStorageSource
void renameLevel(const std::string&, const std::string&) override;
bool isConvertible(const std::string&) override;
bool requiresConversion(const std::string&) override;
void convertLevel(const std::string&, ProgressListener*) override;
int convertLevel(const std::string&, ProgressListener*) override;
};
#endif