summaryrefslogtreecommitdiffstats
path: root/src/ball.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ball.h')
-rw-r--r--src/ball.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ball.h b/src/ball.h
index 7ba103f..232d2e3 100644
--- a/src/ball.h
+++ b/src/ball.h
@@ -3,16 +3,16 @@
#include "board.h"
-static const int BALL_START_X_NORMAL = 40;
-static const int BALL_START_Y_NORMAL = 12;
+static const float BALL_START_X_NORMAL = 40;
+static const float BALL_START_Y_NORMAL = 12;
struct ball {
- int x;
- int y;
+ float x;
+ float y;
struct ball *next;
};
-struct ball *new_ball(int x, int y);
+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);