예제 #1
0
 public Lottery(Lottery <T> src) : this(src.entrants.Capacity)
 {
     src.CombineInto(this);
 }
예제 #2
0
파일: AffixPool.cs 프로젝트: Etabli/DA-GAME
 public void CombineInto(AffixPool pool)
 {
     lottery.CombineInto(pool.lottery);
 }