using System; using System.Collections.Generic; namespace Oni.Dae { internal class IndexedInput : Input { private readonly List indices = new List(); public IndexedInput() { } public IndexedInput(Semantic semantic, Source source) : base(semantic, source) { } // Currently only used by readers/writers, probably not needed for the rest internal int Offset { get; set; } public int Set { get; set; } public List Indices => indices; } }