summaryrefslogtreecommitdiffstats
path: root/src/ball.h
blob: c2be172617f57bc0bc52bc3075510f38c0ab4115 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef BALL_H
#define BALL_H

#include "board.h"

static const int BALL_START_X_NORMAL = 40;
static const int BALL_START_Y_NORMAL = 12;

struct ball {
	int x;
	int y;
	struct ball *next;
};

struct ball *new_ball(int x, int y);

#endif