#ifndef BLOCKRENDERERS_H #define BLOCKRENDERERS_H #include "../../../block/Block.h" #include "BlockRenderer.h" class BlockRenderers { public: static const BlockRenderer& getBlockRenderer(BlockId id); static void init(); private: BlockRenderers(); static const int RENDERER_AMOUNT; static BlockRenderer RENDERER[]; }; #endif