home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / source / apilot.lha / APilot / APilot_Opt / points_protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-12-03  |  763 b   |  23 lines

  1. /**************************************************************************
  2.  *
  3.  * points_protos.h -- Protos for points.c
  4.  *
  5.  *-------------------------------------------------------------------------
  6.  * Authors: Casper Gripenberg  (casper@alpha.hut.fi)
  7.  *          Kjetil Jacobsen  (kjetilja@stud.cs.uit.no)    
  8.  *
  9.  */
  10.  
  11. #include "common.h"
  12.  
  13. void init_explosion( void );
  14. void add_bullets( AShip *aShip, int isin, int icos );
  15. void add_explosion( int x, int y );
  16. void add_exhaust(  AShip *aShip, int isin, int icos, UWORD nframes );
  17. void move_points( UWORD buf, UWORD nframes );
  18. #ifdef PURE_OS
  19. void draw_points( AShip *player, struct RastPort *rp, UWORD buf, UWORD nframes );
  20. #else
  21. void draw_points( AShip *player, struct BitMap *bm, UWORD buf, UWORD nframes );
  22. #endif
  23.