#include <TGamePanics.h>
Public Types | |
| enum | TGamePanicNo { ENoLevelLoaded, ESpriteNumberNotSet, ELoadLevelWithLevelLoaded, ENegativeDamage, ESpriteRemoveCalledWithoutPlot } |
| panic reason codes. More... | |
Static Public Methods | |
| void | Panic (TGamePanicNo aReason) |
| Panic the application. More... | |
Definition at line 21 of file TGamePanics.h.
|
|
panic reason codes.
Definition at line 24 of file TGamePanics.h.
00024 {
00025 ENoLevelLoaded,
00026 ESpriteNumberNotSet,
00027 ELoadLevelWithLevelLoaded,
00028 ENegativeDamage,
00029 ESpriteRemoveCalledWithoutPlot
00030 };
|
|
|
Panic the application.
Definition at line 21 of file TGamePanics.cpp. Referenced by TBadGuy::HitBullet(), CGameFramework::LoadLevelL(), TSprite32x24::Plot(), TSprite32x24::Remove(), and CGameFramework::RunL().
00021 {
00022 _LIT(KPanic,"Game");
00023 User::Panic(KPanic,aReason);
00024 }
|