Guest User

Untitled

a guest
Jan 19th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. @interface Bomb
  2. @property Point position;
  3. @end
  4. @interface Ship : Vehicle {
  5. float width, height;
  6. Point center;
  7. }
  8.  
  9. @property float width;
  10. @property float height;
  11. @property Point center;
  12. - (BOOL)getsHitByBomb:(Bomb *)bomb;
  13. @end
Add Comment
Please, Sign In to add comment