1#pragma once 2 3class CompressedTileStorage_compress_dataIn 4{ 5public: 6 unsigned char *indicesAndData; 7 int allocatedSize; 8 int upgradeBlock; 9 bool neededCompressed; 10 11 unsigned char *newIndicesAndData; 12 int newAllocatedSize; 13 int padding[2]; 14};