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

📄 koulesapp.cpp

📁 基于DirectX的游戏软件
💻 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 + -