LookupData.cs 411 B

12345678910111213141516
  1. using System.Collections.Generic;
  2. namespace TEAMModelOS.SDK.PngQuant
  3. {
  4. public class LookupData
  5. {
  6. public LookupData(int granularity)
  7. {
  8. Lookups = new List<Lookup>();
  9. Tags = new int[granularity, granularity, granularity, granularity];
  10. }
  11. public IList<Lookup> Lookups { get; private set; }
  12. public int[, , ,] Tags { get; private set; }
  13. }
  14. }