cgameapplication.cpp
来自「symbian 的一个 二维飞行游戏 源码 及相关技术文章」· C++ 代码 · 共 31 行
CPP
31 行
// 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 + =
减小字号Ctrl + -
显示快捷键?