/// /// This is an interface IEnemy. /// public interface IEnemy { //This class provides an implementation for the Attack method void Attack(); }