mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-02-04 06:39:53 +00:00
23 lines
453 B
C
23 lines
453 B
C
|
//
|
||
|
// WiiMoteOpenGLDemoAppDelegate.h
|
||
|
//
|
||
|
// Created by Matthias Ringwald on 8/2/09.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
@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
|
||
|
|