//------------------------------------------------------------------------------ // File: collide.h // Author: George Bain, // Date: May 25, 1997 // Description: Prototypes // Copyright (C) 1997 George Bain, All Rights Reserved //------------------------------------------------------------------------------ #ifndef _COLLIDE_H #define _COLLIDE_H //------------------------------------------------------------------------------ // P R O T O T Y P E S //------------------------------------------------------------------------------ void EnemyLeftCollide( void ); void EnemyRightCollide( void ); void PowerUpCollide( void ); void BossOneCollide( void ); #endif //-----------------------------------EOF----------------------------------------