📄 cgameapplication.cpp
字号:
// Copyright 2002 Kenneth Guy,
//
// CGameApplication.cpp
/** \file CGameApplication.cpp
implementation of class CGameApplication */
//
#include "CGameAppUi.h"
#include "CGameAppView.h"
#include "CGameApplication.h"
#include "CGameDocument.h"
#include "CGameState.h"
#include "CScoreDialog.h"
#include "CHighScores.h"
/** return the application uid */
TUid CGameApplication::AppDllUid() const {
return KUidExampleGame;
}
/** construct a new game document */
CApaDocument* CGameApplication::CreateDocumentL() {
return CGameDocument::NewL(*this);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -