#ifndef SKYBOX_H #define SKYBOX_H #include #include "shape.h" #define SKYBOX_ROTATION_SPEED 1.0f typedef struct { GLuint texture; shape_t *cube; GLfloat rotation; } skybox_t; #endif // SKYBOX_H