aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/MemoryChunkStorage.cpp
blob: 9ce5305dce0aa35cc3d6b8c8b3bada2a937b1c9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include "stdafx.h"
#include "net.minecraft.world.level.h"
#include "net.minecraft.world.level.chunk.h"
#include "MemoryChunkStorage.h"

LevelChunk *MemoryChunkStorage::load(Level *level, int x, int z) //throws IOException 
{
	return nullptr;
}

void MemoryChunkStorage::save(Level *level, LevelChunk *levelChunk) //throws IOException
{
}

void MemoryChunkStorage::saveEntities(Level *level, LevelChunk *levelChunk) //throws IOException 
{
}

void MemoryChunkStorage::tick() 
{
}

void MemoryChunkStorage::flush() 
{
}