#include #include "launcher/launcher.hpp" int CALLBACK WinMain(HINSTANCE /*hInstance*/, HINSTANCE /*hPrevInstance*/, LPSTR /*lpCmdLine*/, int /*nCmdShow*/) { launcher launcher; const auto mode = launcher.run(); if(mode == launcher::mode::NONE) { return 0; } else if(mode == launcher::mode::SINGLEPLAYER) { OutputDebugStringA("\n\nSINGLEPLAYER\n\n"); } else if(mode == launcher::mode::MULTIPLAYER) { OutputDebugStringA("\n\nMULTIPLAYER\n\n"); } return 0; }