the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 25 lines 515 B view raw
1#include "stdafx.h" 2#include "net.minecraft.world.level.h" 3#include "net.minecraft.world.level.chunk.h" 4#include "MemoryChunkStorage.h" 5 6LevelChunk *MemoryChunkStorage::load(Level *level, int x, int z) //throws IOException 7{ 8 return NULL; 9} 10 11void MemoryChunkStorage::save(Level *level, LevelChunk *levelChunk) //throws IOException 12{ 13} 14 15void MemoryChunkStorage::saveEntities(Level *level, LevelChunk *levelChunk) //throws IOException 16{ 17} 18 19void MemoryChunkStorage::tick() 20{ 21} 22 23void MemoryChunkStorage::flush() 24{ 25}