summaryrefslogtreecommitdiff
path: root/ball.h
blob: bf3e849e6e2b2175062cb4fd763bae6d15b04b09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef BALL_H
#define BALL_H

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

#include "glpong3d.h"

void GLPong_BallDraw(void);
void GLPong_BallInit(GLuint texture);
void GLPong_BallMove(void);

#endif