24 lines
342 B
C++
24 lines
342 B
C++
//
|
|
// Created by lukas on 04.02.22.
|
|
//
|
|
|
|
#ifndef OPENGLTEST_BASEBLOCK_H
|
|
#define OPENGLTEST_BASEBLOCK_H
|
|
|
|
|
|
#include "BlockRenderer.h"
|
|
|
|
class BaseBlock {
|
|
private:
|
|
|
|
float r,g,b;
|
|
uint xpos,ypos,zpos;
|
|
public:
|
|
BaseBlock(float r, float g, float b, uint xpos, uint ypos, uint zpos);
|
|
|
|
void render();
|
|
};
|
|
|
|
|
|
#endif //OPENGLTEST_BASEBLOCK_H
|