F4MP/tiltedcode/Code/tp_process/main.cpp

10 lines
266 B
C++
Raw Normal View History

#include <windows.h>
#include <OverlayProc.hpp>
#include "ProcessHandler.h"
int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{
TiltedPhoques::UIMain(lpCmdLine, hInstance, []() { return new ProcessHandler; });
}