| 47 | } |
| 48 | |
| 49 | CoreWindow* Create(WindowProperty prop) { |
| 50 | auto core_window = new ZENGINE_OPENGL_WINDOW(prop); |
| 51 | core_window->SetCallbackFunction(std::bind(&CoreWindow::OnEvent, core_window, std::placeholders::_1)); |
| 52 | return core_window; |
| 53 | } |
| 54 | |
| 55 | CoreWindow* Create(const WindowConfiguration& configuration) { |
| 56 | WindowProperty prop = {}; |
no test coverage detected