#ifndef BLOCKTYPES_H #define BLOCKTYPES_H #include "gaming-core/utils/StringBuffer.h" typedef StringBuffer<32> BlockName; typedef unsigned short BlockId; static_assert(sizeof(BlockId) == 2, "size of block id must be 2 bytes"); #endif