123456789101112131415161718192021 |
- #ifndef BLOCKRENDERERS_H
- #define BLOCKRENDERERS_H
- #include "common/block/Block.h"
- #include "client/rendering/block/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
|