mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-01-29 23:53:58 +00:00
19 lines
352 B
Objective-C
19 lines
352 B
Objective-C
//
|
|
// 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
|