the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 14 lines 256 B view raw
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};