12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- #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
- );
- VOID
- PAL_EndingScreen(
- VOID
- );
- #ifdef __cplusplus
- }
- #endif
- #endif
|