BlockGame/blocks/BaseBlock.h
2022-02-06 22:53:29 +01:00

25 lines
367 B
C++

//
// Created by lukas on 04.02.22.
//
#ifndef OPENGLTEST_BASEBLOCK_H
#define OPENGLTEST_BASEBLOCK_H
#include "BlockRenderer.h"
#include "../gl/Texture.h"
class BaseBlock {
private:
Texture *texture;
uint xpos, ypos, zpos;
public:
BaseBlock(uint xpos, uint ypos, uint zpos, Texture *texture);
void render();
};
#endif //OPENGLTEST_BASEBLOCK_H