//
//  MyView.h
//  ExploringGraphics2
//
//  Copyright TrailsintheSand.com 2008. All rights reserved.
//

#import <UIKit/UIKit.h>

@class Object2D;


@interface GraphicsView : UIView
{
    Object2D* ball;
    NSTimer* timer;
}

- (void)tick;

@end

