//------------------------------------------------------------------------------ // File: rocket.h // Author: George Bain, // Date: May 26, 1997 // Description: Prototypes // Copyright (C) 1997 George Bain, All Rights Reserved //------------------------------------------------------------------------------ #ifndef _ROCKET_H #define _ROCKET_H //------------------------------------------------------------------------------ // P R O T O T Y P E S //------------------------------------------------------------------------------ void StartRockets( int x, int y ); void DrawRockets( void ); void MoveRockets( void ); void RocketPlayerCollision( void ); #endif //-----------------------------------EOF----------------------------------------