home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-09-26 | 641 b | 33 lines | [TEXT/CWIE] |
- ///--------------------------------------------------------------------------------------
- // Tiling Demo.h
- //
- // By: Vern Jensen
- ///--------------------------------------------------------------------------------------
-
-
- #ifndef __WINDOWS__
- #include <Windows.h>
- #endif
-
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
-
- void main( void );
- void CreateSpriteWorld( void );
- void SetUpTiling( void );
- void CreateSprites( void );
-
- void SetUpAnimation( void );
- void RunAnimation( void );
- void ShutDown( void );
-
- SW_FUNC void BallSpriteMoveProc(SpritePtr srcSpriteP);
- SW_FUNC void DiamondSpriteMoveProc(SpritePtr ballSpriteP);
-
- #ifdef __cplusplus
- }
- #endif
-