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]; }
public Belt(string name, int caliber, Round[] belt) : this(name, caliber) { this.Rounds = (Round[])belt.Clone(); }