openblocks/src/rendering/skybox.h
2024-10-15 18:42:55 +02:00

15 lines
253 B
C++

#pragma once
#include <string>
#include <vector>
#define GL_RGB 0x1907
class Skybox {
private:
unsigned int ID;
public:
Skybox(std::vector<std::string>, unsigned format = GL_RGB);
~Skybox();
void activate(unsigned int textureIdx);
};