//------------------------------------------------------------------------------ // File: missile.h // Author: George Bain, // Date: May 26, 1997 // Description: Prototypes // Copyright (C) 1997 George Bain, All Rights Reserved //------------------------------------------------------------------------------ #ifndef _MISSILE_H #define _MISSILE_H //------------------------------------------------------------------------------ // P R O T O T Y P E S //------------------------------------------------------------------------------ void DrawMissiles( void ); void InitMissiles( void ); void StartMissiles( int x, int y, int xv, int yv, unsigned char r, unsigned char g, unsigned char b, int tag ); void MoveMissiles( void ); void PlayerMissileCollideLeft( int miss_x, int miss_y ); void PlayerMissileCollideRight( int miss_x, int miss_y ); void EnemyMissileCollide( int miss_x, int miss_y ); void PlayerBossMissile( int miss_x, int miss_y ); void PlayerRocketCollision( int miss_x, int miss_y); #endif //-----------------------------------EOF----------------------------------------