Merge branch 'developer' into feature/Menu

# Conflicts:
#	CrystalPoint.vcxproj.filters
#	Main.cpp
#	Skybox.cpp
#	Skybox.h
This commit is contained in:
Remco
2016-06-20 15:23:55 +02:00
63 changed files with 31853 additions and 76 deletions
+6
View File
@@ -6,10 +6,16 @@ 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);
};