//  @ Project : hello eagl ++
//  @ File Name : eaglAppDelegate.h
//  @ Date : 2008-4-8
//  @ Author : kongfu.yang
//  @ Company : http://www.play3d.net
//  @ Copyright : 2008-4, Example source license. 
//        By keep this header comment, 
//        you may use this source file in your project for non-commercial or commercial purpose.

#import <UIKit/UIKit.h>

@class eglView;

@interface eaglAppDelegate : NSObject  <UIApplicationDelegate, UIAccelerometerDelegate>
{
    UIWindow *window;
    eglView *contentView;
	NSTimer *timer;
}

@property (nonatomic, retain) UIWindow *window;
@property (nonatomic, retain) eglView *contentView;

- (void) onTimer:(NSTimer*)timer;

@end
 
