//------------------------------------------------------------------------------ // File: game.h // Author: George Bain, // Date: May 14, 1997 // Description: Prototypes // Copyright (C) 1997 George Bain, All Rights Reserved //------------------------------------------------------------------------------ #ifndef _GAME_H #define _GAME_H //------------------------------------------------------------------------------ // P R O T O T Y P E S //------------------------------------------------------------------------------ void RefreshScreen( void ); void StartGame( void ); void ResetGame( void ); void DrawBonus( void ); void DrawGameOver( void ); void Scroll( void ); #endif //-----------------------------------EOF----------------------------------------