//
// TestViewController.h
// Test
//
// Created by James Hancock on 6/27/10.
// Copyright __MyCompanyName__ 2010. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <frisbee.h>
@interface TestViewController : UIViewController {
IBOutlet UILabel *label1;
IBOutlet UILabel *label2;
UIImageView *imageView, *ballImageView, *campFireView;
CGRect myViewFrame;
CGRect ballViewFrame;
int XLocation;
int YLocation;
int starSizeX;
int starSizeY;
UIImage *myImage, *ballImage;
NSTimer *mainTimer;
int imgCenterX;
int timer;
int lastx;
int testx, testy, ballx, bally;
//frisbee* frisbees;
UIImage* animationImages;
}
@end
|