// // ModalViewController.h // Hangmanipad2 // // Created by Laurence Ehrhardt on 4/20/11. // Copyright 2011 Ballast Lane Applications. All rights reserved. // #import @interface ModalViewController : UIViewController { UILabel *score; UIScrollView *scrollView; UILabel *text; } @property (nonatomic, retain) IBOutlet UILabel *score; @property (nonatomic, retain) IBOutlet UIScrollView *scrollView; @property (nonatomic, retain) IBOutlet UILabel *text; - (IBAction) dismissDetailView:(id)sender; @end