BlockGame/blocks/AirBlock.h

19 lines
327 B
C
Raw Normal View History

2022-02-10 17:24:56 +00:00
//
// 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