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

📄 example2dapp.cpp

📁 Symbian OS S60平台2D游戏引擎案例
💻 CPP
字号:
   /*
============================================================================
    * Name : CExample2DApp.cpp
    * Part of : 2DExample
    * Description : Implementation of CExample2DApp
    * Copyright (c) 2007 Nokia Corporation
============================================================================
    */

// INCLUDE FILES

#include <eikstart.h>

#include    "Example2DApp.h"
#include    "Example2DDocument.h"



TUid CExample2DApp::AppDllUid() const
    {
    return KUidExample2D;
    }


   
CApaDocument* CExample2DApp::CreateDocumentL()
    {
    return CExample2DDocument::NewL( *this );
    }


TFileName CExample2DApp::ResourceFileName() const
	{
	return TFileName();
	}


EXPORT_C CApaApplication* NewApplication()
    {
    return new CExample2DApp;
    }

// ---------------------------------------------------------
// E32Main() 
// Entry point function for Symbian OS v9 EXE Application
// ---------------------------------------------------------
//
GLDEF_C TInt E32Main()
	{
	return EikStart::RunApplication( NewApplication );
	}


// End of file


⌨️ 快捷键说明

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