2009-10-18 18:39:55 +00:00
|
|
|
//
|
|
|
|
// WiiMoteOpenGLDemoAppDelegate.h
|
|
|
|
//
|
|
|
|
// Created by Matthias Ringwald on 8/2/09.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
2009-10-23 20:14:38 +00:00
|
|
|
#import "BTInquiryViewController.h"
|
2009-10-18 18:39:55 +00:00
|
|
|
|
|
|
|
@class EAGLView;
|
|
|
|
|
2009-10-23 20:14:38 +00:00
|
|
|
@interface WiiMoteOpenGLDemoAppDelegate : NSObject <UIApplicationDelegate, BTInquiryDelegate> {
|
2009-10-18 18:39:55 +00:00
|
|
|
UIWindow *window;
|
2009-10-23 20:14:38 +00:00
|
|
|
UIViewController *glViewControl;
|
|
|
|
BTInquiryViewController *inqViewControl;
|
|
|
|
UINavigationController *navControl;
|
2009-10-18 18:39:55 +00:00
|
|
|
EAGLView *glView;
|
|
|
|
UILabel *status;
|
|
|
|
}
|
|
|
|
|
2009-10-23 21:53:38 +00:00
|
|
|
- (void)startDemo;
|
2009-10-23 21:38:30 +00:00
|
|
|
|
2009-10-23 20:14:38 +00:00
|
|
|
@property (nonatomic, retain) UIWindow *window;
|
|
|
|
@property (nonatomic, retain) UINavigationController *navControl;
|
|
|
|
@property (nonatomic, retain) UIViewController *glViewControl;
|
2009-10-23 21:38:30 +00:00
|
|
|
@property (nonatomic, retain) BTInquiryViewController *inqViewControl;
|
2009-10-23 20:14:38 +00:00
|
|
|
@property (nonatomic, retain) EAGLView *glView;
|
2009-10-18 18:39:55 +00:00
|
|
|
|
|
|
|
@end
|
|
|
|
|