📄 main.cpp
字号:
/*
* ==============================================================================
* Name : Main.cpp
* Part of : RGA Game Example
* Interface :
* Description : Application main function
* Version : 1.0
*
* Copyright (c) 2007-2008 Nokia Corporation.
* This material, including documentation and any related
* computer programs, is protected by copyright controlled by
* Nokia Corporation.
* ==============================================================================
*/
// INCLUDE FILES
#include "ExampleApplication.h"
int main()
{
CExampleApplication* app = new CExampleApplication;
// initialise application to 32bit graphics mode
TInt err = app->Init(GRAPHICS_FORMAT_XRGB8888);
if (err != KErrNone)
{
return err;
}
return app->Run();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -