Skybox.h 198 B

123456789101112131415
  1. #pragma once
  2. #include <string>
  3. class Skybox
  4. {
  5. private:
  6. float size;
  7. std::string folder;
  8. public:
  9. Skybox(const float &size, const std::string &folder);
  10. ~Skybox();
  11. void init();
  12. void draw();
  13. };