whoa/src/app/mac/MainApp.h
2023-01-02 13:17:18 -06:00

20 lines
455 B
Objective-C

#ifndef APP_MAC_MAIN_APP_H
#define APP_MAC_MAIN_APP_H
#include "app/mac/MacClient.h"
#include <AppKit/AppKit.h>
#include <Foundation/Foundation.h>
@interface MainApp : NSObject
@property (retain) NSTimer* m_pollTimer;
@property bool isPolling;
@property (retain) IBOutlet NSMenuItem* captureFrameMenuItem;
@property (retain) IBOutlet NSMenuItem* showBatchViewerMenuItem;
@property (retain) IBOutlet NSMenuItem* showGLLayerSetupMenuItem;
@end
#endif