Renamed functions to make their purpose more explicit

This commit is contained in:
2024-03-17 23:32:37 -04:00
parent ec2f3320e3
commit cfbc726dca
2 changed files with 5 additions and 5 deletions

View File

@@ -4,8 +4,8 @@
/* Display the given text, centered on the screen, as a label.
NEEDS RAYGUI LIBRARY. */
void display_text_centered(std::string to_disp);
void display_text_raygui(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);
void display_and_exit_raygui(std::string to_disp, int time);
#endif