blob: c2de79269ae6e5b27987365775d625d397153358 (
plain) (
blame)
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
26
|
// NBTChunkSerializer.h
#pragma once
#include "ChunkDef.h"
// fwd:
class cFastNBTWriter;
class cWorld;
/** Saves the chunk data into a NBT format, used by the Anvil storage.
The Writer is expected to be set up so that the serializer can write the chunk's top level "Level" NBT tag immediately.
Provides a single static entry point that does all the work, through a hidden worker class in the CPP file. */
class NBTChunkSerializer
{
public:
/** Serializes the chunk into the specified writer. The chunk must be present. */
static void Serialize(const cWorld & aWorld, cChunkCoords aCoords, cFastNBTWriter & aWriter);
};
|