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