mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-02-04 06:39:53 +00:00
25 lines
476 B
Objective-C
25 lines
476 B
Objective-C
//
|
|
// WiiMoteOpenGLDemoAppDelegate.h
|
|
//
|
|
// Created by Matthias Ringwald on 8/2/09.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#define USE_BLUETOOTH
|
|
|
|
@class EAGLView;
|
|
|
|
@interface WiiMoteOpenGLDemoAppDelegate : NSObject <UIApplicationDelegate> {
|
|
UIWindow *window;
|
|
EAGLView *glView;
|
|
UILabel *status;
|
|
}
|
|
|
|
@property (nonatomic, retain) IBOutlet UIWindow *window;
|
|
@property (nonatomic, retain) IBOutlet EAGLView *glView;
|
|
@property (nonatomic, retain) IBOutlet UILabel *status;
|
|
|
|
@end
|
|
|