snek_vs_snacc/ball.h

10 lines
132 B
C

#ifndef _BALL_H_
#define _BALL_H_
void move_balls(FIELD* f);
void init_ball(BALL* b, int x, int y, char dir, int value);
#endif