//------------------------------------------------------------------------------ // File: enemy.h // Author: George Bain, // Date: May 14, 1997 // Description: Prototypes // Copyright (C) 1997 George Bain, All Rights Reserved //------------------------------------------------------------------------------ #ifndef _ENEMY_H #define _ENEMY_H //------------------------------------------------------------------------------ // P R O T O T Y P E S //------------------------------------------------------------------------------ void ControlEnemy( void ); void DrawEnemy( void ); void MoveEnemyLeft( void ); void MoveEnemyRight( void ); #endif //-----------------------------------EOF----------------------------------------