summaryrefslogtreecommitdiff
path: root/paddle.h
blob: c0c8b0ccfeb0be99de685d9d045f772d09680c40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef PADDLE_H
#define PADDLE_H

GLuint paddle_texture;
GLuint paddle_hit_texture;

typedef struct {
	GLfloat w, h, x, y, z;
	GLfloat r, g, b, a;
} Paddle_t;

#endif