123456789101112131415 |
- #include "StaticRegistry.h"
- #include "BlockType.h"
- #include "ItemType.h"
- int count_DimensionGenerator = 0;
- int count_ItemType = 0;
- int count_BlockType = 0;
- #define REGISTER(c, typ) \
- const int c::ID = count_##typ++; \
- const c *c::INSTANCE = new c();
- #include "BasicBlocks.h"
- #include "OverworldDimension.h"
|