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

#include "board.h"

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

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

struct ball *new_ball(float x, float y);
void free_ball(struct ball *b);
void clear_ball(struct ball *b);
void update_ball(struct ball *b);
void draw_ball(struct ball *b);

#endif