示例#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!";
        }