blob: 848ccbde6215eaea9b995d03ff5bc9d697f44c55 (
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 "llappviewermacosx-objc.h"
@interface LLAppDelegate : NSObject <NSApplicationDelegate> {
LLNSWindow *window;
NSTimer *frameTimer;
}
@property (assign) IBOutlet LLNSWindow *window;
- (void) mainLoop;
@end
|