mirror of
https://github.com/etlegacy/Update-Installer.git
synced 2025-01-24 00:11:01 +00:00
17 lines
214 B
C++
17 lines
214 B
C++
|
//////////////////////////////////
|
||
|
// ScribbleApp.cpp
|
||
|
|
||
|
#include "ScribbleApp.h"
|
||
|
|
||
|
CScribbleApp::CScribbleApp()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
BOOL CScribbleApp::InitInstance()
|
||
|
{
|
||
|
//Create the Window
|
||
|
m_Frame.Create();
|
||
|
|
||
|
return TRUE;
|
||
|
}
|