17 lines
258 B
C
17 lines
258 B
C
|
//
|
||
|
// BWTransparentScroller.h
|
||
|
// BWToolkit
|
||
|
//
|
||
|
// Created by Brandon Walkin (www.brandonwalkin.com)
|
||
|
// All code is provided under the New BSD license.
|
||
|
//
|
||
|
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
@interface BWTransparentScroller : NSScroller
|
||
|
{
|
||
|
BOOL isVertical;
|
||
|
}
|
||
|
|
||
|
@end
|