first glfw window for osx

This commit is contained in:
2018-09-19 19:36:45 +07:00
parent 20d4c1f44b
commit d9b57d9679
8 changed files with 243 additions and 13 deletions

View File

@@ -5,3 +5,11 @@
******************************************************************************/
#include "../common.hpp"
using namespace e2d;
int main() {
window w{{640, 480}, "Enduro2D", false};
while ( !w.should_close() ) {
window::poll_events();
}
}