예제 #1
0
파일: AwardScreen.cs 프로젝트: nymo1/XDarts
 private bool isLowTon(Round round)
 {
     return round.GetScore() >= 100;
 }
예제 #2
0
파일: AwardScreen.cs 프로젝트: nymo1/XDarts
 private bool isTonEighty(Round round)
 {
     return round.GetScore() == 180;
 }
예제 #3
0
파일: AwardScreen.cs 프로젝트: nymo1/XDarts
 private bool isHighTon(Round round)
 {
     return round.GetScore() > 150;
 }