//------------------------------------------------------------------------------ // File: load.h // Author: George Bain, // Date: May 26, 1997 // Description: Prototypes // Copyright (C) 1997 George Bain, All Rights Reserved //------------------------------------------------------------------------------ #ifndef _LOAD_H #define _LOAD_H //------------------------------------------------------------------------------ // P R O T O T Y P E S //------------------------------------------------------------------------------ void InitBossOne( void ); void InitEnemy( void ); void InitExplosions( void ); void InitPlayer( void ); void InitPowerUp( void ); void InitRockets( void ); void InitStatusScreen( void ); #endif //-----------------------------------EOF----------------------------------------