| 12345678910111213141516171819202122232425262728293031323334 |
- //
- // FLEXResources.h
- // FLEX
- //
- // Created by Ryan Olson on 6/8/14.
- // Copyright (c) 2014 Flipboard. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
- @interface FLEXResources : NSObject
- + (UIImage *)closeIcon;
- + (UIImage *)dragHandle;
- + (UIImage *)globeIcon;
- + (UIImage *)hierarchyIndentPattern;
- + (UIImage *)listIcon;
- + (UIImage *)moveIcon;
- + (UIImage *)selectIcon;
- + (UIImage *)jsonIcon;
- + (UIImage *)textPlainIcon;
- + (UIImage *)htmlIcon;
- + (UIImage *)audioIcon;
- + (UIImage *)jsIcon;
- + (UIImage *)plistIcon;
- + (UIImage *)textIcon;
- + (UIImage *)videoIcon;
- + (UIImage *)xmlIcon;
- + (UIImage *)binaryIcon;
- @end
|