8 lines
176 B
C
8 lines
176 B
C
#ifndef PONG_BALL_H
|
|
#define PONG_BALL_H
|
|
|
|
void point_scored();
|
|
void move_ball(int &ball_x, int &ball_y, int &loop_delay, int p1_start, int p2_start, int &need_refresh);
|
|
|
|
#endif
|