7 lines
173 B
C
7 lines
173 B
C
#ifndef PONG_BALL_H
|
|
#define PONG_BALL_H
|
|
|
|
bool move_ball(int &ball_x, int &ball_y, int &loop_delay, int players_coords[2], int players_scores[2], int &need_refresh);
|
|
|
|
#endif
|