cgameapplication.h

来自「symbian 的一个 二维飞行游戏 源码 及相关技术文章」· C头文件 代码 · 共 30 行

H
30
字号
// Copyright 2002 Kenneth Guy,
// 
// CGameApplication.h
//

#ifndef _CGAMEAPPLICATION_H_
#define _CGAMEAPPLICATION_H_

/** \file CGameApplication.h 
    defines class CGameApplication */


#include <eikapp.h>

/** Uid allocated to this application. */
  
const TUid KUidExampleGame = {0x101f5951};

/** Game Application.

    Just creates the game document */

class CGameApplication : public CEikApplication {
private:
  CApaDocument* CreateDocumentL();
  TUid AppDllUid() const;
};

#endif

⌨️ 快捷键说明

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