This commit is contained in:
romkazvo
2023-08-07 19:29:24 +08:00
commit 34d6c5d489
4832 changed files with 1389451 additions and 0 deletions

45
Editor/ConsoleDialog.cpp Normal file
View File

@@ -0,0 +1,45 @@
// ConsoleDialog.cpp : implementation file
//
#include "stdafx.h"
#include "ConsoleDialog.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CConsoleDialog dialog
CConsoleDialog::CConsoleDialog(CWnd* pParent /*=NULL*/)
: CDialog(CConsoleDialog::IDD, pParent)
{
//{{AFX_DATA_INIT(CConsoleDialog)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
void CConsoleDialog::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CConsoleDialog)
// NOTE: the ClassWizard will add DDX and DDV calls here
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CConsoleDialog, CDialog)
//{{AFX_MSG_MAP(CConsoleDialog)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CConsoleDialog message handlers
void CConsoleDialog::OnOK()
{
}