📄 font.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 + -