//------------------------------------------------------------------------------ // File: status.h // Author: George Bain, // Date: May 26, 1997 // Description: Prototypes // Copyright (C) 1997 George Bain, All Rights Reserved //------------------------------------------------------------------------------ #ifndef _STATUS_H #define _STATUS_H //------------------------------------------------------------------------------ // P R O T O T Y P E S //------------------------------------------------------------------------------ void DrawStatusScreen( void ); void DrawLifeBar( void ); void InitLifeBar( void ); void UpdateStatus( void ); #endif //-----------------------------------EOF----------------------------------------