16 lines
192 B
C++
16 lines
192 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
class Skybox
|
|
{
|
|
public:
|
|
Skybox(const float &size);
|
|
~Skybox();
|
|
|
|
float size;
|
|
|
|
void init();
|
|
void draw();
|
|
GLuint loadTexture(const std::string &fileName);
|
|
};
|