blob: 915b594221a295bea497208a35a6f0f15b9449d1 (
plain)
1
2
3
4
5
6
7
8
|
#import <UIKit/UIKit.h>
@class Ball;
@interface ViewController : UIViewController
@property (strong, nonatomic) IBOutlet Ball *ball;
@property (strong, nonatomic) IBOutlet UILabel *scoreLabel;
@end
|