예제 #1
0
파일: Oponent.cs 프로젝트: tmarkovica/Snaps
 public Oponent(OponentAI ai) : base(ai.GetHand())
 {
     this.oponentAI = ai;
 }
예제 #2
0
파일: Oponent.cs 프로젝트: tmarkovica/Snaps
 public Oponent(OponentsHand hand) : base(hand)
 {
     this.oponentAI = new OponentAI(hand);
 }