Cog/SpectrumWindowController.h
Christopher Snowhill c59d4d0215 [Visualization] Tear down window vis when not open
When the visualization window is not open, it should not continue to run
the scene until the app is quit. Apparently, the windowed mode is really
slow on old Intel machines, too. Full screening it is enough to bodge
the entire system session until the machine is remotely rebooted.

Signed-off-by: Christopher Snowhill <kode54@gmail.com>
2022-05-22 18:39:32 -07:00

20 lines
338 B
Objective-C

//
// SpectrumWindowController.h
// Cog
//
// Created by Christopher Snowhill on 5/22/22.
//
#import <Cocoa/Cocoa.h>
#import "PlaybackController.h"
NS_ASSUME_NONNULL_BEGIN
@interface SpectrumWindowController : NSWindowController <NSWindowDelegate> {
IBOutlet PlaybackController *playbackController;
}
@end
NS_ASSUME_NONNULL_END