예제 #1
0
        public override string Attack(Ship target)
        {
            this.DestroyShip(target);

            return "We bombed them from the sky!";
        }
예제 #2
0
파일: Destroyer.cs 프로젝트: krasi070/OOP
        public override string Attack(Ship target)
        {
            this.DestroyShip(target);

            return "They didn't see us coming!";
        }
예제 #3
0
파일: Warship.cs 프로젝트: krasi070/OOP
        public override string Attack(Ship target)
        {
            this.DestroyShip(target);

            return "Victory is ours!";
        }