18 lines
262 B
C
18 lines
262 B
C
|
//
|
||
|
// Created by lukas on 06.02.22.
|
||
|
//
|
||
|
|
||
|
#ifndef OPENGLTEST_STONEBLOCK_H
|
||
|
#define OPENGLTEST_STONEBLOCK_H
|
||
|
|
||
|
|
||
|
#include "BaseBlock.h"
|
||
|
|
||
|
class Stoneblock: public BaseBlock {
|
||
|
public:
|
||
|
Stoneblock(uint xpos, uint ypos, uint zpos);
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif //OPENGLTEST_STONEBLOCK_H
|