Guest User

Untitled

a guest
Jul 23rd, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. //
  2. // Fall_CollisionViewController.h
  3. // Fall:Collision
  4. //
  5. // Created by Prasanth Venigalla on 1/31/10.
  6. // Copyright __MyCompanyName__ 2010. All rights reserved.
  7. //
  8.  
  9. #import <UIKit/UIKit.h>
  10.  
  11. @interface Fall_CollisionViewController : UIViewController {
  12.  
  13. UIImageView *bomb;
  14. IBOutlet UIImageView *hole;
  15. CGPoint position;
  16. }
  17.  
  18. @property (nonatomic, retain) UIImageView *bomb;
  19. @property (nonatomic, retain) UIImageView *hole;
  20.  
  21. - (void)checkCollision;
  22. -(void)addObjectMethod;
  23. -(IBAction)start:(id)sender;
  24.  
  25. @end
Add Comment
Please, Sign In to add comment