Example #1
0
 public ReelSet()
 {
     for (int r = 0; r < Reels.Length; r++)
     {
         Reels[r] = new Reel();
     }
 }
Example #2
0
        public object Clone()
        {
            Reel ret = new Reel();

            for (int h = 0; h < Handicaps.Length; h++)
            {
                ret.Handicaps[h] = Handicaps[h];
            }

            return(ret);
        }