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.
14 lines
274 B
C++
14 lines
274 B
C++
9 months ago
|
#include "includes/display_text.hpp"
|
||
|
#include <iostream>
|
||
|
#include <string>
|
||
|
|
||
|
void display_text(std::string to_disp, const int if_mode) {
|
||
|
if (if_mode == IF_CLI) {
|
||
|
std::cout << to_disp << std::endl;
|
||
|
}
|
||
|
if (if_mode == IF_GUI) {
|
||
|
display_text_raygui(to_disp);
|
||
|
}
|
||
|
return;
|
||
|
}
|