Boy, I just be outright stealing code now. But it looks nicer now. Fixes #234 Signed-off-by: Christopher Snowhill <kode54@gmail.com>
18 lines
272 B
Objective-C
18 lines
272 B
Objective-C
//
|
|
// SpectrumView.h
|
|
// Cog
|
|
//
|
|
// Created by Christopher Snowhill on 2/12/22.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#import "VisualizationController.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface SpectrumView : NSView
|
|
@property(nonatomic) BOOL isListening;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|