This commit is contained in:
watrabi
2025-09-18 17:55:52 -04:00
commit 977f1ff4b8
15030 changed files with 17324420 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#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;
} }