AppDelegate.h 308 B

123456789101112131415161718
  1. //
  2. // AppDelegate.h
  3. // RootlessForEmulators
  4. //
  5. // Created by Uli Kusterer on 08/03/15.
  6. // Copyright (c) 2015 Uli Kusterer. All rights reserved.
  7. //
  8. #import <Cocoa/Cocoa.h>
  9. @interface AppDelegate : NSObject <NSApplicationDelegate>
  10. -(void) addEvent: (NSEvent*)evt;
  11. -(NSEvent*) dequeueNextEvent;
  12. @end