FLEXResources.h 652 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // FLEXResources.h
  3. // FLEX
  4. //
  5. // Created by Ryan Olson on 6/8/14.
  6. // Copyright (c) 2014 Flipboard. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <UIKit/UIKit.h>
  10. @interface FLEXResources : NSObject
  11. + (UIImage *)closeIcon;
  12. + (UIImage *)dragHandle;
  13. + (UIImage *)globeIcon;
  14. + (UIImage *)hierarchyIndentPattern;
  15. + (UIImage *)listIcon;
  16. + (UIImage *)moveIcon;
  17. + (UIImage *)selectIcon;
  18. + (UIImage *)jsonIcon;
  19. + (UIImage *)textPlainIcon;
  20. + (UIImage *)htmlIcon;
  21. + (UIImage *)audioIcon;
  22. + (UIImage *)jsIcon;
  23. + (UIImage *)plistIcon;
  24. + (UIImage *)textIcon;
  25. + (UIImage *)videoIcon;
  26. + (UIImage *)xmlIcon;
  27. + (UIImage *)binaryIcon;
  28. @end