コード例 #1
0
ファイル: Bet.cs プロジェクト: densom/Roulette
 public Bet(BetTypeValue betType, int amount)
 {
     BetType = betType;
     Amount = amount;
 }
コード例 #2
0
ファイル: RouletteTable.cs プロジェクト: Ripper555/Roulette
 public Result BetSingle(BetTypeValue betTypeValue, int betAmount)
 {
     return BetSingle(new Bet(betTypeValue, betAmount));
 }