blob: 48c8f1461ca0d171f006ec63c16d65901f1dcd39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef BALL_H
#define BALL_H
GLuint ball_texture;
typedef struct {
GLfloat w, h, x, y, z;
GLfloat r, g, b, a;
GLfloat xv, yv, zv;
GLfloat rotate;
} Ball_t;
#endif
|