mirror of
https://github.com/ksherlock/ample.git
synced 2024-10-31 15:04:56 +00:00
20 lines
310 B
C
20 lines
310 B
C
|
//
|
||
|
// TransparentScroller.h
|
||
|
// Ample
|
||
|
//
|
||
|
// Created by Kelvin Sherlock on 9/4/2020.
|
||
|
// Copyright © 2020 Kelvin Sherlock. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface TransparentScroller : NSScroller
|
||
|
|
||
|
@property NSColor *backgroundColor;
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|