From 6f292699f88ea83a5188fd1f8696d73410ad16d6 Mon Sep 17 00:00:00 2001 From: Rockingcool Date: Mon, 11 Mar 2024 13:19:07 -0500 Subject: [PATCH] Updated header file to reflect new function --- includes/raygui_helpers.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/includes/raygui_helpers.hpp b/includes/raygui_helpers.hpp index 8ec7793..091b951 100644 --- a/includes/raygui_helpers.hpp +++ b/includes/raygui_helpers.hpp @@ -6,4 +6,6 @@ NEEDS RAYGUI LIBRARY. */ void display_text_centered(std::string to_disp); +/* Display the given string, and exit the game after 'time' seconds. */ +void display_and_exit(std::string to_disp, int time); #endif