| 1234567891011121314151617181920 |
- //
- // AppDelegate.h
- // danmaku
- //
- // Created by Sam Jaffe on 5/24/19.
- // Copyright © 2019 Sam Jaffe. All rights reserved.
- //
- #import "GameView.h"
- @interface GameWindow : NSWindow
- @end
- @interface AppDelegate : NSObject <NSApplicationDelegate>
- @property (assign) IBOutlet GameWindow *window;
- @property (retain) IBOutlet GameView *gameview;
- @end
|