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