GLFramework/example/main.cpp

27 lines
367 B
C++
Raw Normal View History

2020-08-29 14:44:06 +00:00
#include "glf.hpp"
2020-08-29 15:51:22 +00:00
#include "MyWindow.hpp"
2020-08-29 14:44:06 +00:00
int main(int argc, char** argv)
{
2020-08-29 15:51:22 +00:00
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();
2020-08-29 14:44:06 +00:00
return 0;
}