ChunkResolution.cs 455 B

12345678910111213141516171819202122
  1. namespace ChunkyImageLib.DataHolders;
  2. [Flags]
  3. public enum ChunkResolution
  4. {
  5. /// <summary>
  6. /// The full resolution of the chunk
  7. /// </summary>
  8. Full = 1,
  9. /// <summary>
  10. /// Half of the chunks resolution
  11. /// </summary>
  12. Half = 2,
  13. /// <summary>
  14. /// A quarter of the chunks resolution
  15. /// </summary>
  16. Quarter = 4,
  17. /// <summary>
  18. /// An eighth of the chunks resolution
  19. /// </summary>
  20. Eighth = 8
  21. }