mirror of
https://github.com/celisej567/mcpe.git
synced 2026-01-02 01:48:27 +03:00
* Mac OS X 10.6 & More C++03 Support * Fix SDL2 options.txt loading for C++03 --------- Co-authored-by: Brent Da Mage <BrentDaMage@users.noreply.github.com>
45 lines
818 B
C++
45 lines
818 B
C++
/********************************************************************
|
|
Minecraft: Pocket Edition - Decompilation Project
|
|
Copyright (C) 2023 iProgramInCpp
|
|
|
|
The following code is licensed under the BSD 1 clause license.
|
|
SPDX-License-Identifier: BSD-1-Clause
|
|
********************************************************************/
|
|
|
|
#include "ChunkStorage.hpp"
|
|
|
|
ChunkStorage::~ChunkStorage()
|
|
{
|
|
}
|
|
|
|
LevelChunk* ChunkStorage::load(Level* a, int b, int c)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void ChunkStorage::save(Level* a, LevelChunk* b)
|
|
{
|
|
}
|
|
|
|
void ChunkStorage::saveEntities(Level* a, LevelChunk* b)
|
|
{
|
|
}
|
|
|
|
void ChunkStorage::saveAll(Level* a, std::vector<LevelChunk*>& b)
|
|
{
|
|
for (std::vector<LevelChunk*>::iterator it = b.begin(); it != b.end(); it++)
|
|
{
|
|
save(a, *it);
|
|
}
|
|
}
|
|
|
|
void ChunkStorage::tick()
|
|
{
|
|
|
|
}
|
|
|
|
void ChunkStorage::flush()
|
|
{
|
|
|
|
}
|