AppDelegate.h 354 B

1234567891011121314151617181920
  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 "GameView.h"
  9. @interface GameWindow : NSWindow
  10. @end
  11. @interface AppDelegate : NSObject <NSApplicationDelegate>
  12. @property (assign) IBOutlet GameWindow *window;
  13. @property (retain) IBOutlet GameView *gameview;
  14. @end