//------------------------------------------------------------------------------ // File: screens.h // Author: George Bain, // Date: May 25, 1997 // Description: Prototypes // Copyright (C) 1997 George Bain, All Rights Reserved //------------------------------------------------------------------------------ #ifndef _SCREENS_H #define _SCREENS_H //------------------------------------------------------------------------------ // P R O T O T Y P E S //------------------------------------------------------------------------------ void InitTitleScreen( void ); void InitStoryScreen( void ); void InitCityScreen( void ); void DrawStoryScreen( void ); void DrawTitleScreen( void ); void DrawCityScreen( void ); #endif //-----------------------------------EOF----------------------------------------