12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- #ifndef _SCENE_H
- #define _SCENE_H
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- VOID
- PAL_ApplyWave(
- SDL_Surface *lpSurface
- );
- VOID
- PAL_MakeScene(
- VOID
- );
- BOOL
- PAL_CheckObstacle(
- PAL_POS pos,
- BOOL fCheckEventObjects,
- WORD wSelfObject
- );
- VOID
- PAL_UpdatePartyGestures(
- BOOL fWalking
- );
- VOID
- PAL_UpdateParty(
- VOID
- );
- VOID
- PAL_NPCWalkOneStep(
- WORD wEventObjectID,
- INT iSpeed
- );
- #ifdef __cplusplus
- }
- #endif
- #endif
|