BlockGame/blocks/BaseBlock.h
2022-02-05 21:44:31 +01:00

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