コード例 #1
0
ファイル: LotteryCache.cs プロジェクト: cool8868/H5Nball
 public LotteryEntity Lottery(EnumLotteryType lotteryType, int subType, int cardCount)
 {
     return(Lottery((int)lotteryType, subType, cardCount));
 }
コード例 #2
0
ファイル: LotteryCache.cs プロジェクト: cool8868/H5Nball
 public LotteryEntity LotteryFive(EnumLotteryType lotteryType, int subType)
 {
     return(Lottery((int)lotteryType, subType, 5, null));
 }
コード例 #3
0
ファイル: LotteryCache.cs プロジェクト: cool8868/H5Nball
 public LotteryEntity Lottery(EnumLotteryType lotteryType, int subType, List <int> prizeEquipments)
 {
     return(Lottery((int)lotteryType, subType, 1, prizeEquipments));
 }
コード例 #4
0
ファイル: LotteryCache.cs プロジェクト: cool8868/H5Nball
 public LotteryEntity Lottery(EnumLotteryType lotteryType, int subType)
 {
     return(Lottery((int)lotteryType, subType));
 }