mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
13 lines
366 B
C++
13 lines
366 B
C++
#include "stdafx.h"
|
|
|
|
#include "Voxel/Serializer.h"
|
|
|
|
namespace RBX { namespace Voxel {
|
|
|
|
const unsigned char SerializerConstants::kNewCellMarker = 0x01;
|
|
const unsigned char SerializerConstants::kRepeatCellMarker = 0x02;
|
|
const unsigned char SerializerConstants::kEndSequenceMarker = 0x03;
|
|
const unsigned int SerializerConstants::kRecentlyEncodedReferenceBits = 3;
|
|
|
|
} }
|