GLFramework/example/main.cpp
2020-08-29 17:51:22 +02:00

27 lines
367 B
C++

#include "glf.hpp"
#include "MyWindow.hpp"
int main(int argc, char** argv)
{
MyWindow* window = nullptr;
try {
glfInit();
window = new MyWindow;
}
catch (std::exception e)
{
std::cout << e.what() << std::endl;
return 1;
}
while (!window->ShouldClose())
{
glfwPollEvents();
window->Display();
}
window->Close();
glfwTerminate();
return 0;
}