tetrisapplication.cpp
来自「在symbian2.0平台上开发的完整的俄罗斯方块的源码。」· C++ 代码 · 共 20 行
CPP
20 行
#include "TetrisDocument.h"
#include "TetrisApplication.h"
// UID for the application, this should correspond to the uid defined in the mmp file
static const TUid KUidTetrisApp = {0x1027434D};
CApaDocument* CTetrisApplication::CreateDocumentL()
{
// Create an HelloWorld document, and return a pointer to it
CApaDocument* document = CTetrisDocument::NewL(*this);
return document;
}
TUid CTetrisApplication::AppDllUid() const
{
// Return the UID for the HelloWorld application
return KUidTetrisApp;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?