home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-04-21 | 769 b | 42 lines | [TEXT/CWIE] |
- ///--------------------------------------------------------------------------------------
- // Tiling Demo.h
- //
- // By: Vern Jensen
- ///--------------------------------------------------------------------------------------
-
-
- #ifndef __WINDOWS__
- #include <Windows.h>
- #endif
-
- #ifndef __SPRITEWORLD__
- #include "SpriteWorld.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 MouseSpriteMoveProc(SpritePtr srcSpriteP);
- SW_FUNC void DiamondSpriteMoveProc(SpritePtr ballSpriteP);
-
- void DrawMyLevel (short Number);
- short RandomNumber(short inMax);
-
-
- #ifdef __cplusplus
- }
- #endif
-