19 lines
298 B
C
19 lines
298 B
C
|
//
|
||
|
// Created by lukas on 04.02.22.
|
||
|
//
|
||
|
|
||
|
#ifndef OPENGLTEST_DIRTBLOCK_H
|
||
|
#define OPENGLTEST_DIRTBLOCK_H
|
||
|
|
||
|
|
||
|
#include <cstdlib>
|
||
|
#include "BaseBlock.h"
|
||
|
|
||
|
class DirtBlock : public BaseBlock {
|
||
|
public:
|
||
|
DirtBlock(const uint &xpos, const uint &ypos, const uint &zpos);
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif //OPENGLTEST_DIRTBLOCK_H
|