11 lines
163 B
C++
11 lines
163 B
C++
#ifndef GL_TEMPLATE_HELLO_H
|
|
#define GL_TEMPLATE_HELLO_H
|
|
|
|
#include <string>
|
|
|
|
void hello();
|
|
|
|
int showWindow(const std::string &title);
|
|
|
|
#endif //GL_TEMPLATE_HELLO_H
|