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

📄 retroapplication.cpp

📁 symbian系统上的2D图形游戏
💻 CPP
字号:
////////////////////////////////////////////////////////////////////////
//
// RetroApplication.cpp
//
// Copyright (c) 2003 Nokia Mobile Phones.  All rights reserved.
//
////////////////////////////////////////////////////////////////////////

#include "RetroDocument.h"
#include "RetroApplication.h"

static const TUid KUidRetroApp = {0x0fedface};

CApaDocument* CRetroApplication::CreateDocumentL()
    {  
    CApaDocument* document = CRetroDocument::NewL(*this);
    return document;
    }

TUid CRetroApplication::AppDllUid() const
    {
    return KUidRetroApp;
    }

⌨️ 快捷键说明

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