コード例 #1
0
ファイル: SpielView.cs プロジェクト: edhor1608/DartConsole
        private int GetWuerfeGesamt()
        {
            int summe = 0;

            if (wurf1 != null)
            {
                summe += wurf1.GetWurfGesamt();
            }
            if (wurf2 != null)
            {
                summe += wurf2.GetWurfGesamt();
            }
            if (wurf3 != null)
            {
                summe += wurf3.GetWurfGesamt();
            }
            return(summe);
        }
コード例 #2
0
ファイル: Durchgang.cs プロジェクト: edhor1608/DartConsole
 public int AddWurf(Wurf w, int i)
 {
     anzahlWürfe++;
     würfe[i] = w;
     return(w.GetWurfGesamt());
 }