BlockAir.h 215 B

123456789101112131415161718
  1. #ifndef BLOCKAIR_H
  2. #define BLOCKAIR_H
  3. #include "common/block/Block.h"
  4. class BlockAir : public Block
  5. {
  6. public:
  7. BlockAir();
  8. virtual ~BlockAir();
  9. bool isEmpty() const override;
  10. private:
  11. };
  12. #endif