예제 #1
0
 public LotteryEntity Lottery(EnumLotteryType lotteryType, int subType, int cardCount)
 {
     return(Lottery((int)lotteryType, subType, cardCount));
 }
예제 #2
0
 public LotteryEntity LotteryFive(EnumLotteryType lotteryType, int subType)
 {
     return(Lottery((int)lotteryType, subType, 5, null));
 }
예제 #3
0
 public LotteryEntity Lottery(EnumLotteryType lotteryType, int subType, List <int> prizeEquipments)
 {
     return(Lottery((int)lotteryType, subType, 1, prizeEquipments));
 }
예제 #4
0
 public LotteryEntity Lottery(EnumLotteryType lotteryType, int subType)
 {
     return(Lottery((int)lotteryType, subType));
 }