* SavingWorldScreen: Only save what's necessary

This commit is contained in:
iProgramInCpp
2023-08-02 21:55:46 +03:00
parent a2df1b3095
commit e5f942c194
7 changed files with 49 additions and 3 deletions

View File

@@ -9,11 +9,18 @@
#include "ChunkSource.hpp"
#include "Level.hpp"
ChunkSource::~ChunkSource()
{
}
void ChunkSource::saveAll()
{
}
ChunkSource::~ChunkSource()
#ifdef ENH_IMPROVED_SAVING
void ChunkSource::saveUnsaved()
{
}
#endif