summaryrefslogtreecommitdiff
path: root/ball.h
blob: 3ee3e2e8c9782c7a5ad7f1d0c236be1db5ae4184 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#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;
} Ball_t;

#endif