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

📄 koulesapp.cpp

📁 Clear Mine扫雷游戏: 这是一个模拟扫雷游戏的vc编码程序 编码思想: 通过几个数组设定好雷区的位置
💻 CPP
字号:
#include "Headers.h"
#include "resource.h"
#include "KoulesApp.h"
#include "KoulesWin.h"


BEGIN_MESSAGE_MAP(KoulesApp, DirectDrawApp)
	//{{AFX_MSG_MAP(KoulesApp)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

KoulesApp theapp;

BOOL KoulesApp::InitInstance()
{
#ifdef _DEBUG
//	afxTraceEnabled=FALSE;
#endif
	KoulesWin* win=new KoulesWin;
	if (!win->Create( "Koules", IDI_ICON ))
		return FALSE;

	m_pMainWnd=win;
	return DirectDrawApp::InitInstance();
}



⌨️ 快捷键说明

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