Box2DAppDelegate.h
上传用户:gb3593
上传日期:2022-01-07
资源大小:3028k
文件大小:1k
源码类别:

游戏引擎

开发平台:

Visual C++

  1. //
  2. //  Box2DAppDelegate.h
  3. //  Box2D
  4. //
  5. //  Box2D iPhone port by Simon Oliver - http://www.simonoliver.com - http://www.handcircus.com
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "TestEntriesViewController.h"
  9. #import "Delegates.h"
  10. @class Box2DView;
  11. @interface Box2DAppDelegate : NSObject <UIApplicationDelegate,TestSelectDelegate> {
  12.     UIWindow *window;
  13.     Box2DView *glView;
  14. TestEntriesViewController *testEntriesView;
  15. }
  16. @property (nonatomic, retain) IBOutlet UIWindow *window;
  17. @property (nonatomic, retain) IBOutlet Box2DView *glView;
  18. @end