//
//  AppDelegate.h
//  iphone-gl-app
//
//  Created by John Ryland on 7/06/09.
//  Copyright InvertedLogic 2009. All rights reserved.
//

#import <UIKit/UIKit.h>


@class GraphicsView;


@interface AppDelegate : NSObject
{
    UIWindow *window;
    GraphicsView *view;
}
@end

