diff options
author | Charadon <dev@iotib.net> | 2022-06-02 18:29:57 -0400 |
---|---|---|
committer | Charadon <dev@iotib.net> | 2022-06-02 18:29:57 -0400 |
commit | 2dd8b8b6e66aa7e47da42912b0ca07ed8d7f0c23 (patch) | |
tree | 61c0defcc1f8f54f47759f04f41883e7343a096d /src/pong.h | |
parent | 6a98c8dd4c10195e7b71602b15554bdc82ac0153 (diff) | |
download | Pong-C-2dd8b8b6e66aa7e47da42912b0ca07ed8d7f0c23.tar.gz |
QOL stuff and upped to version 0.2
Diffstat (limited to 'src/pong.h')
-rw-r--r-- | src/pong.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/pong.h b/src/pong.h index 8fb51c5..bb6e522 100644 --- a/src/pong.h +++ b/src/pong.h @@ -10,6 +10,7 @@ #include <stdatomic.h> #include <threads.h> #include <setjmp.h> +#include <string.h> #define LEFT 0 #define RIGHT 1 @@ -34,6 +35,7 @@ struct Balls { extern int Difficulty; extern bool GameGoing; extern atomic_int Ticks; +extern char *VersionString; void enemy(struct Players *Enemy, struct Balls ball); void ball(Rectangle *Player, Rectangle *Enemy, struct Balls *Ball, int *PlayerScore, int *EnemyScore); |