home *** CD-ROM | disk | FTP | other *** search
- //
- // ASGradient.h
- //
-
- // Draws gradients...........................
-
- #import <Cocoa/Cocoa.h>
-
- @interface ASGradient : NSObject {
- }
-
- + (void)drawGradientWithStartColor:(NSColor *)startColor endColor:(NSColor *)endColor rect:(NSRect)rect;
- + (void)drawVerticalGradientWithStartColor:(NSColor *)startColor endColor:(NSColor *)endColor rect:(NSRect)rect;
-
- @end
-