예제 #1
0
파일: PlayerChoice.cs 프로젝트: codepic/GoC
 public bool Wins(Choices.Choice choice)
 {
     if (Choices.IsGreatest(choice))
     {
         return(_choice < choice);
     }
     return(_choice > choice);
 }