blob: bf7370b5041a783f11c87881ab02266bde58a7e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//
// AppDelegate.h
// MacGap
//
// Created by Alex MacCaw on 08/01/2012.
// Copyright (c) 2012 Twitter. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "Classes/ContentView.h"
#import "WindowController.h"
@interface AppDelegate : NSObject <NSApplicationDelegate>
@property (retain, nonatomic) WindowController *windowController;
@end
|