charcoal/OpenGLEngine/main.cpp

7 lines
198 B
C++
Raw Normal View History

2018-09-04 19:25:54 +00:00
#include "MyApplication.h"
2018-09-04 19:41:17 +00:00
int WINAPI WinMain(HINSTANCE h_instance, HINSTANCE h_prev_instance, LPSTR cmd_line, int n_cmd_show)
{
2018-09-04 19:25:54 +00:00
MyApplication my_app("my_app", h_instance);
return my_app.run();
}