mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-29 14:07:58 +03:00
11 lines
219 B
C++
11 lines
219 B
C++
![]() |
#include "MainWindow.h"
|
||
|
|
||
|
int WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
|
||
|
{
|
||
|
CMainWindow mainWindow;
|
||
|
mainWindow.Center();
|
||
|
mainWindow.Show(SW_SHOW);
|
||
|
Framework::Win32::CWindow::StdMsgLoop(mainWindow);
|
||
|
return 0;
|
||
|
}
|