15 lines
182 B
C
15 lines
182 B
C
|
#pragma once
|
||
|
#include "Graphics/Window.h"
|
||
|
|
||
|
|
||
|
class GUIManager {
|
||
|
public:
|
||
|
GUIManager(BarinkWindow* window);
|
||
|
~GUIManager();
|
||
|
|
||
|
void Render();
|
||
|
|
||
|
|
||
|
private:
|
||
|
BarinkWindow* currentwindow;
|
||
|
};
|