From 8ba882919abe6d2402fc55b3e5f911d154fd9349 Mon Sep 17 00:00:00 2001 From: Jason Bou-Samra <154414066+bou-samra@users.noreply.github.com> Date: Sat, 3 Aug 2024 10:37:07 +1000 Subject: [PATCH] Update render.h --- src/render.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/render.h b/src/render.h index 8b13789..cd83281 100644 --- a/src/render.h +++ b/src/render.h @@ -1 +1,17 @@ +#ifndef RENDER_H +#define RENDER_H +int display_grid (); // refresh game board +int Ren_restart (void); // game over/restart +int Ren_pause (void); // pause +int Ren_game (void); // render game +int Ren_logo (void); // display logo +int Ren_about (void); // display about +int Ren_info (void); // info screen +int Ren_menu (void); // main menu +int Ren_level (void); // display level / current score +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 + +#endif