1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- #ifndef PLAY_H
- #define PLAY_H
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- VOID
- PAL_GameUpdate(
- BOOL fTrigger
- );
- VOID
- PAL_GameUseItem(
- VOID
- );
- VOID
- PAL_GameEquipItem(
- VOID
- );
- VOID
- PAL_StartFrame(
- VOID
- );
- VOID
- PAL_WaitForKey(
- WORD wTimeOut
- );
- #ifdef __cplusplus
- }
- #endif
- #endif
|