示例#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));
 }