📄 sipexengine.pan
字号:
/*
* ==============================================================================
* Name : SIPExEngine.pan
* Part of : SIPExEngine
* Interface :
* Description :
* Version :
*
* Copyright (c) 2004-2006 Nokia Corporation.
* This material, including documentation and any related
* computer programs, is protected by copyright controlled by
* Nokia Corporation.
* ==============================================================================
*/
#ifndef _SIPEXENGINE_PAN
#define _SIPEXENGINE_PAN
_LIT( KPanicCntx, "SIPExGameEngine" );
enum TSIPExEnginePanic
{
// The game view notifier has not been set to the game engine.
ENoGameViewNotifier = -6000,
// The board value is out of range
EBoardValueOOR = -6001
};
inline void Panic( TSIPExEnginePanic aPanic )
{
User::Panic( KPanicCntx(), aPanic );
}
#endif // _SIPEXENGINE_PAN
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -