blob: 235ee1a3b47ec2c65d69862a6d26f7bc08c7fc7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef SKYBOX_H
#define SKYBOX_H
#include <GL/glew.h>
#include "shape.h"
#define SKYBOX_ROTATION_SPEED 1.0f
typedef struct
{
GLuint texture;
shape_t *cube;
GLfloat rotation;
} skybox_t;
#endif // SKYBOX_H
|