From 68089ef17c293fbb10a1d8161e23d38a34f28a20 Mon Sep 17 00:00:00 2001 From: Jason Bou-Samra <154414066+bou-samra@users.noreply.github.com> Date: Sat, 17 Aug 2024 20:04:29 +1000 Subject: [PATCH] Update render.h --- src/render.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/render.h b/src/render.h index 745bd4e..5036fa2 100644 --- a/src/render.h +++ b/src/render.h @@ -15,5 +15,10 @@ int Ren_next (void); // display next block/brick/piece int Ren_high (void); // display high scores int Ren_line (char line[], int char_x, int char_y, int ln, int ll, bool col ); // parameter names in function prototypes not necessary +extern int tile_shp; +extern int tilesrc_x, tilesrc_y, tiledst_x, tiledst_y; extern int row, col; +extern int tile_c; +extern int last_time, current_time, deltatime, score; + #endif