The SceneKit visualizer now has a crash check, which will trigger if an exception is thrown by the app. Signed-off-by: Christopher Snowhill <kode54@gmail.com>
21 lines
324 B
Objective-C
21 lines
324 B
Objective-C
//
|
|
// SpectrumViewCG.h
|
|
// Cog
|
|
//
|
|
// Created by Christopher Snowhill on 2/12/22.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#import "VisualizationController.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface SpectrumViewCG : NSView
|
|
@property(nonatomic) BOOL isListening;
|
|
|
|
- (void)startPlayback;
|
|
- (void)enableFullView;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|