home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1999 Spring / macformat-077.iso / Shareware Plus / Development / SpriteWorld 2.2 Extra Demos / Brian's Demos / Lighting Demo / Lighting Demo.h < prev    next >
Encoding:
Text File  |  1997-04-21  |  769 b   |  42 lines  |  [TEXT/CWIE]

  1. ///--------------------------------------------------------------------------------------
  2. // Tiling Demo.h
  3. //
  4. // By: Vern Jensen
  5. ///--------------------------------------------------------------------------------------
  6.  
  7.  
  8. #ifndef __WINDOWS__
  9. #include <Windows.h>
  10. #endif
  11.  
  12. #ifndef __SPRITEWORLD__
  13. #include "SpriteWorld.h"
  14. #endif
  15.  
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19.  
  20.  
  21. void    main( void );
  22. void    CreateSpriteWorld( void );
  23.  
  24. void    SetUpTiling( void );
  25. void    CreateSprites( void );
  26.  
  27. void    SetUpAnimation( void );
  28. void    RunAnimation( void );
  29. void    ShutDown( void );
  30.  
  31.  
  32. SW_FUNC void    MouseSpriteMoveProc(SpritePtr srcSpriteP);
  33. SW_FUNC void    DiamondSpriteMoveProc(SpritePtr ballSpriteP);
  34.  
  35. void     DrawMyLevel (short Number);
  36. short    RandomNumber(short inMax);
  37.  
  38.  
  39. #ifdef __cplusplus
  40. }
  41. #endif
  42.