BlockGame/blocks/BaseBlock.h

24 lines
342 B
C
Raw Normal View History

2022-02-05 20:44:31 +00:00
//
// 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