// MonoGame - Copyright (C) The MonoGame Team // This file is subject to the terms and conditions defined in // file 'LICENSE.txt', which is part of this source code package. using System.Collections.ObjectModel; using System.Collections.Generic; namespace Microsoft.Xna.Framework.Content.Pipeline.Graphics { /// /// Provides methods for maintaining a list of index values. /// public sealed class IndexCollection : Collection { /// /// Initializes a new instance of IndexCollection. /// public IndexCollection() { } /// /// Add a range of indices to the collection. /// /// A collection of indices to add. public void AddRange(IEnumerable indices) { foreach (var t in indices) Add(t); } } }