Added enemy -> brightness skybox

This commit is contained in:
2016-06-10 11:55:57 +02:00
parent 0ca94aef4d
commit 348b53c027
7 changed files with 56 additions and 5 deletions
+3
View File
@@ -6,11 +6,14 @@ class Skybox
private:
float size;
std::string folder;
float brightness;
float targetBrightness;
public:
Skybox(const float &size, const std::string &folder);
~Skybox();
void init();
void draw();
void update(float deltaTime, int, int);
GLuint loadTexture(const std::string &fileName);
};