iw5-mod/src/main.cpp

9 lines
216 B
C++
Raw Normal View History

2018-12-01 09:42:29 -05:00
#include <std_include.hpp>
2018-12-23 07:17:08 -05:00
#include "launcher/launcher.hpp"
2018-12-01 09:42:29 -05:00
2018-12-23 07:17:08 -05:00
int CALLBACK WinMain(HINSTANCE /*hInstance*/, HINSTANCE /*hPrevInstance*/, LPSTR /*lpCmdLine*/, int /*nCmdShow*/)
2018-12-01 09:42:29 -05:00
{
2018-12-23 07:17:08 -05:00
launcher launcher;
launcher.run();
2018-12-01 09:42:29 -05:00
}