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