﻿using System;
using System.Collections.Generic;

namespace Oni.Dae
{
    internal class IndexedInput : Input
    {
        private readonly List<int> indices = new List<int>();

        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<int> Indices => indices;
    }
}
