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

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

void GLPong_PaddlesCreate();

#endif