// // Created by lukas on 08.02.22. // #ifndef OPENGLTEST_AIRBLOCK_H #define OPENGLTEST_AIRBLOCK_H #include "BaseBlock.h" class AirBlock : public BaseBlock{ public: AirBlock(uint xpos, uint ypos, uint zpos) : BaseBlock(xpos, ypos, zpos, nullptr) {} void render() override { } }; #endif //OPENGLTEST_AIRBLOCK_H