You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
220 B
C++
10 lines
220 B
C++
10 months ago
|
#ifndef _RAYGUI_HELPERS_HPP
|
||
|
#define _RAYGUI_HELPERS_HPP
|
||
|
#include <string>
|
||
|
|
||
|
/* Display the given text, centered on the screen, as a label.
|
||
|
NEEDS RAYGUI LIBRARY. */
|
||
|
void display_text_centered(std::string to_disp);
|
||
|
|
||
|
#endif
|