Example #1
0
 public Belt(string name, int caliber, Round[] pattern, int size)
     : this(name, caliber)
 {
     this.Rounds = new Round[size];
     for (int i = 0; i < size; i++)
         this.Rounds[i] = pattern[i % pattern.Length];
 }
Example #2
0
 public Belt(string name, int caliber, Round[] belt)
     : this(name, caliber)
 {
     this.Rounds = (Round[])belt.Clone();
 }