Files
DarkRP2D/external/Box2D-2.3.1/Contributions/Platforms/iPhone/Classes/Box2DAppDelegate.h
Julian Nießner d175d433a8 Added Box2D
2018-05-06 12:43:20 +02:00

25 lines
541 B
Objective-C

//
// 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