Block.h 278 B

1234567891011121314151617
  1. #ifndef BLOCK_H
  2. #define BLOCK_H
  3. #include "common/block/BlockTypes.h"
  4. class Block final {
  5. BlockId id;
  6. BlockName registry;
  7. public:
  8. Block(BlockId id, const BlockName& registry);
  9. BlockId getId() const;
  10. const BlockName& getRegistry() const;
  11. };
  12. #endif