Box2DAppDelegate.h
上传用户:gb3593
上传日期:2022-01-07
资源大小:3028k
文件大小:1k
- //
- // Box2DAppDelegate.h
- // Box2D
- //
- // Box2D iPhone port by Simon Oliver - http://www.simonoliver.com - http://www.handcircus.com
- //
- #import <UIKit/UIKit.h>
- #import "TestEntriesViewController.h"
- #import "Delegates.h"
- @class Box2DView;
- @interface Box2DAppDelegate : NSObject <UIApplicationDelegate,TestSelectDelegate> {
- UIWindow *window;
- Box2DView *glView;
- TestEntriesViewController *testEntriesView;
- }
- @property (nonatomic, retain) IBOutlet UIWindow *window;
- @property (nonatomic, retain) IBOutlet Box2DView *glView;
- @end