ImpactMode.cs 379 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace TheraBytes.BetterUi
  6. {
  7. public enum ImpactMode
  8. {
  9. PixelHeight,
  10. PixelWidth,
  11. AspectRatio,
  12. InverseAspectRatio,
  13. Dpi,
  14. StaticMethod1,
  15. StaticMethod2,
  16. StaticMethod3,
  17. StaticMethod4,
  18. StaticMethod5,
  19. }
  20. }