예제 #1
0
파일: Bet.cs 프로젝트: densom/Roulette
 public Bet(BetTypeValue betType, int amount)
 {
     BetType = betType;
     Amount = amount;
 }
예제 #2
0
 public Result BetSingle(BetTypeValue betTypeValue, int betAmount)
 {
     return BetSingle(new Bet(betTypeValue, betAmount));
 }