summaryrefslogtreecommitdiff
path: root/indra/llwindow/llappdelegate-objc.h
blob: 56b7a3079712b4e2ad24b1c49740d98eb89f8cb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
//  LLAppDelegate.h
//  SecondLife
//
//  Created by Geenz on 12/16/12.
//
//

#import <Cocoa/Cocoa.h>
#import "llopenglview-objc.h"
#include "llwindowmacosx-objc.h"

@interface LLAppDelegate : NSObject <NSApplicationDelegate> {
	LLNSWindow *window;
	NSTimer *frameTimer;
}

@property (assign) IBOutlet LLNSWindow *window;

- (void) mainLoop;

@end