26 lines
360 B
C
26 lines
360 B
C
|
//
|
||
|
// ProjectMView.h
|
||
|
// Cog
|
||
|
//
|
||
|
// Created by Christopher Snowhill on 3/11/25.
|
||
|
//
|
||
|
|
||
|
#ifndef ProjectMView_h
|
||
|
#define ProjectMView_h
|
||
|
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
#import <CogAudio/VisualizationController.h>
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface ProjectMView : NSOpenGLView
|
||
|
|
||
|
-(id)initWithFrame:(NSRect)frame;
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|
||
|
|
||
|
#endif /* ProjectMView_h */
|