//------------------------------------------------------------------------------ // File: explode.h // Author: George Bain, // Date: May 25, 1997 // Description: Prototypes // Copyright (C) 1997 George Bain, All Rights Reserved //------------------------------------------------------------------------------ #ifndef _EXPLODE_H #define _EXPLODE_H //------------------------------------------------------------------------------ // P R O T O T Y P E S //------------------------------------------------------------------------------ void StartExplosions( int x, int y, int speed ); void DrawExplosions( void ); void AnimateExplosions( void ); #endif //-----------------------------------EOF----------------------------------------