mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-29 14:07:58 +03:00
8 lines
214 B
C++
8 lines
214 B
C++
#include "MainWindow.h"
|
|
|
|
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE, char* sCmdLine, int)
|
|
{
|
|
CPS2VM virtualMachine;
|
|
CMainWindow MainWindow(virtualMachine, sCmdLine);
|
|
return MainWindow.Loop();
|
|
}
|