AppDelegate.h 480 B

12345678910111213141516171819202122
  1. //
  2. // AppDelegate.h
  3. // danmaku
  4. //
  5. // Created by Sam Jaffe on 5/24/19.
  6. // Copyright © 2019 Sam Jaffe. All rights reserved.
  7. //
  8. #import "GameBridge.h"
  9. #import "GameView.h"
  10. @interface GameWindow : NSWindow
  11. @property(retain) IBOutlet GameBridge * gamebridge;
  12. @end
  13. @interface AppDelegate : NSObject <NSApplicationDelegate>
  14. @property(assign) IBOutlet GameWindow * window;
  15. @property(retain) IBOutlet GameView * gameview;
  16. @property(retain) IBOutlet GameBridge * gamebridge;
  17. @end