//------------------------------------------------------------------------------ // File: powerup.h // Author: George Bain, // Date: May 22, 1997 // Description: Prototypes // Copyright (C) 1997 George Bain, All Rights Reserved //------------------------------------------------------------------------------ #ifndef _POWERUP_H #define _POWERUP_H //------------------------------------------------------------------------------ // P R O T O T Y P E S //------------------------------------------------------------------------------ //void InitPowerUp( void ); void DrawPowerUp( void ); void ControlPowerUp( void ); void MovePowerUp( void ); #endif //-----------------------------------EOF----------------------------------------