コード例 #1
0
ファイル: Computer.cs プロジェクト: dhmm/GemiSavasiOyunu
        internal void AttackRandomPoint()
        {
            bool attackSuccesfull = false;

            do
            {
                Point p = GetRandomPoint();
                attackSuccesfull = Sea.AttackOn(this, p);
            } while (attackSuccesfull);
        }