You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
681 B

  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 *)checkerPattern;
  19. + (UIImage *)jsonIcon;
  20. + (UIImage *)textPlainIcon;
  21. + (UIImage *)htmlIcon;
  22. + (UIImage *)audioIcon;
  23. + (UIImage *)jsIcon;
  24. + (UIImage *)plistIcon;
  25. + (UIImage *)textIcon;
  26. + (UIImage *)videoIcon;
  27. + (UIImage *)xmlIcon;
  28. + (UIImage *)binaryIcon;
  29. @end