34 lines
464 B
C++
34 lines
464 B
C++
/*
|
|
* TowerGUI.h
|
|
*
|
|
* Created on: 5 nov. 2020
|
|
* Author: simon
|
|
*/
|
|
|
|
#ifndef RENDER_GUI_TOWERGUI_H_
|
|
#define RENDER_GUI_TOWERGUI_H_
|
|
|
|
struct SDL_Window;
|
|
typedef void *SDL_GLContext;
|
|
|
|
namespace td {
|
|
namespace render {
|
|
|
|
class Renderer;
|
|
|
|
} // namespace render
|
|
} // namespace td
|
|
|
|
|
|
namespace TowerGui {
|
|
|
|
void init(SDL_Window* window, SDL_GLContext glContext, td::render::Renderer* renderer);
|
|
void render();
|
|
void destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* RENDER_GUI_TOWERGUI_H_ */
|