123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- #ifndef ENDGAME_H
- #define ENDGAME_H
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- VOID
- PAL_EndingSetEffectSprite(
- WORD wSpriteNum
- );
- VOID
- PAL_ShowFBP(
- WORD wChunkNum,
- WORD wFade
- );
- VOID
- PAL_ScrollFBP(
- WORD wChunkNum,
- WORD wScrollSpeed,
- BOOL fScrollDown
- );
- VOID
- PAL_EndingAnimation(
- VOID
- );
- #ifdef PAL_WIN95
- VOID
- PAL_EndingScreen(
- VOID
- );
- #endif
- #ifdef __cplusplus
- }
- #endif
- #endif
|