terravisor/include/scene.h

12 lines
221 B
C
Raw Normal View History

2024-08-10 19:12:21 -04:00
namespace Scene
{
void Display(GLFWwindow* window);
2024-08-12 21:40:28 -04:00
void DrawGUI(GLFWwindow* window);
2024-08-10 19:12:21 -04:00
void Idle();
2024-08-12 21:40:28 -04:00
void ReloadShader();
2024-08-10 19:12:21 -04:00
void Init();
extern const int InitWindowWidth;
extern const int InitWindowHeight;
}