//------------------------------------------------------------------------------ // File: stars.h // Author: George Bain, // Date: May 26, 1997 // Description: Prototypes // Copyright (C) 1997 George Bain, All Rights Reserved //------------------------------------------------------------------------------ #ifndef _STARS_H #define _STARS_H //------------------------------------------------------------------------------ // P R O T O T Y P E S //------------------------------------------------------------------------------ void InitStars( void ); void MoveStars( void ); void DrawStars( void ); #endif //-----------------------------------EOF----------------------------------------