11 lines
198 B
C
11 lines
198 B
C
|
namespace Scene
|
||
|
{
|
||
|
void DrawGUI(GLFWwindow* window);
|
||
|
void Display(GLFWwindow* window);
|
||
|
void Idle();
|
||
|
void Init();
|
||
|
|
||
|
extern const int InitWindowWidth;
|
||
|
extern const int InitWindowHeight;
|
||
|
}
|