Cog/SpectrumViewCG.h
Christopher Snowhill cbcbdf893d [Spectrum Visualizer] Add crash check for SceneKit
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>
2022-06-17 22:15:14 -07:00

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