1234567891011121314151617 |
- #ifndef BLOCK_H
- #define BLOCK_H
- #include "common/block/BlockTypes.h"
- class Block final {
- BlockId id;
- BlockName registry;
-
- public:
- Block(BlockId id, const BlockName& registry);
-
- BlockId getId() const;
- const BlockName& getRegistry() const;
- };
- #endif
|