mirror of
https://github.com/etlegacy/Update-Installer.git
synced 2025-02-13 07:01:32 +00:00
13 lines
146 B
C++
13 lines
146 B
C++
|
#include "SimpleApp.h"
|
||
|
|
||
|
CSimpleApp::CSimpleApp()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
BOOL CSimpleApp::InitInstance()
|
||
|
{
|
||
|
//Create the Window
|
||
|
m_View.Create();
|
||
|
|
||
|
return TRUE;
|
||
|
}
|