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

📄 font.cpp

📁 一个3D的保龄球的源代码
💻 CPP
字号:
// Font.cpp: implementation of the CFont class.
//
//////////////////////////////////////////////////////////////////////

#include "Font.h"
#include "engine.h"
#include "gfx.h"


//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

CFont::CFont(CEngine *p)
{
	m_pEngine = p;
}

CFont::~CFont()
{

}

bool CFont::loadFont()
{
	m_pFontImage = m_pEngine->GetGfx()->LoadBmp("res\\smallfont.bbm", true);
	m_pFontImageMini = m_pEngine->GetGfx()->LoadBmp("res\\ABC.bbm", true);
	if (m_pFontImageMini == NULL || m_pFontImage == NULL)
		return false;
	return true;
}

⌨️ 快捷键说明

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