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

#include "SDL.h"
#include "SDL_opengl.h"

#include "glpong3d.h"

void GLPong_PaddleDraw(const Paddle_t * paddle);
void GLPong_PaddleInit(Paddle_t * paddle, GLfloat z, GLuint texture);
void GLPong_PaddleMove(Paddle_t * paddle, GLfloat x, GLfloat y);

#endif /* PADDLE_H */