mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-27 14:07:03 +00:00
17 lines
318 B
Objective-C
17 lines
318 B
Objective-C
//
|
|
// AppDelegate.h
|
|
// TestSheet
|
|
//
|
|
// Created by Joe Semolian on 4/15/12.
|
|
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "SheetWindowController.h"
|
|
|
|
@interface AppController : NSObject <NSApplicationDelegate>
|
|
{
|
|
SheetWindowController* _sheetController;
|
|
}
|
|
@end
|