F4MP/codigos originales/tiltedcode/Code/tp_process/main.cpp
2026-01-06 18:53:59 +01:00

9 lines
266 B
C++

#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; });
}