⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 kill.cpp

📁 Windows CE 下Kill 游戏的源代码。
💻 CPP
字号:
// Kill.cpp : Defines the class behaviors for the application.
//

#include "stdafx.h"
#include "Kill.h"

#include "MainFrm.h"


#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CKillApp

BEGIN_MESSAGE_MAP(CKillApp, CWinApp)
	//{{AFX_MSG_MAP(CKillApp)
	//}}AFX_MSG_MAP
	// Standard file based document commands
END_MESSAGE_MAP()



CKillApp::CKillApp()
	: CWinApp()
{

}
CKillApp theApp;
BOOL CKillApp::InitInstance()
{
	m_pMainWnd = new CMainFrame;
	m_pMainWnd->ShowWindow(m_nCmdShow);
	m_pMainWnd->UpdateWindow();
	return TRUE;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -