예제 #1
0
파일: RoundResult.cs 프로젝트: mrtcn/upope
 public RoundResult(string winnerId, ChoiceResultType resultType, bool bluff, bool superBluff)
 {
     WinnerId   = winnerId;
     ResultType = resultType;
     Bluff      = bluff;
     SuperBluff = superBluff;
 }
예제 #2
0
파일: WinModel.cs 프로젝트: mrtcn/upope
 public WinModel(string userId, ChoiceResultType choiceResultType)
 {
     UserId           = userId;
     ChoiceResultType = choiceResultType;
 }