#ifndef BLOCKICON_HPP #define BLOCKICON_HPP #include "block.hpp" #include #include "shader.hpp" class blockIcon{ private: BlockID block; unsigned int VAO, VBO, EBO; std::vector indices; std::vector vertices; public: float x,y,width_height; blockIcon(BlockID block, float x, float y, float width_height); blockIcon(); void Draw(Shader shader,float screenRatio); }; #endif