diff options
author | Oxore <oxore@protonmail.com> | 2017-12-01 05:28:10 +0300 |
---|---|---|
committer | Oxore <oxore@protonmail.com> | 2017-12-01 05:28:10 +0300 |
commit | e949a49287b38574c7372c9a6c1c759eafa3266c (patch) | |
tree | 206266cae6a0cf9703d3b09110f0165ff29200b3 /include/functions.h | |
parent | 027a94b74a2ff36eddbffc1cce4dcdc14126c813 (diff) |
Wrap global variables into structures
Diffstat (limited to 'include/functions.h')
-rw-r--r-- | include/functions.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/functions.h b/include/functions.h index ef9d42f..8f7618e 100644 --- a/include/functions.h +++ b/include/functions.h @@ -15,7 +15,7 @@ void rotateLeft(); void rotateRight(); void rotateShape(); int linesRmScore(); -void scoreDisplay(); +void scoreDisplay(int s, Text *textScore); void colorizeFld(); void colorizeActiSh(); void drawFld(sfRenderWindow *window); @@ -23,7 +23,7 @@ void menuTick(); void colorizeRandom(); void gameover(); void genNextShape(); -void copyShape(struct shapeSt *localSh); +void copyShape(Shape *localSh); void drawNextShape(); void cleanupFld(); |