InsideJobAppDelegate.h 314 B

1234567891011121314151617
  1. //
  2. // InsideJobAppDelegate.h
  3. // InsideJob
  4. //
  5. // Created by Adam Preble on 10/6/10.
  6. // Copyright 2010 Adam Preble. All rights reserved.
  7. //
  8. #import <Cocoa/Cocoa.h>
  9. @interface InsideJobAppDelegate : NSObject <NSApplicationDelegate> {
  10. NSWindow *window;
  11. }
  12. @property (assign) IBOutlet NSWindow *window;
  13. @end