18 lines
266 B
C
18 lines
266 B
C
|
//
|
||
|
// NSView+Visibility.h
|
||
|
// Cog
|
||
|
//
|
||
|
// Created by Christopher Snowhill on 6/8/22.
|
||
|
//
|
||
|
|
||
|
#ifndef NSView_Visibility_h
|
||
|
#define NSView_Visibility_h
|
||
|
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
@interface NSView (Visibility)
|
||
|
- (BOOL)visibleInWindow;
|
||
|
@end
|
||
|
|
||
|
#endif /* NSView_Visibility_h */
|