24 lines
283 B
C++
24 lines
283 B
C++
/*
|
|
* TowerGUI.h
|
|
*
|
|
* Created on: 5 nov. 2020
|
|
* Author: simon
|
|
*/
|
|
|
|
#ifndef RENDER_GUI_TOWERGUI_H_
|
|
#define RENDER_GUI_TOWERGUI_H_
|
|
|
|
struct GLFWwindow;
|
|
|
|
namespace TowerGui{
|
|
|
|
void init(GLFWwindow* window);
|
|
void render();
|
|
void destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* RENDER_GUI_TOWERGUI_H_ */
|