Guest User

Untitled

a guest
Jan 12th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. boolean checkBullet(Bullet b)
  2. {
  3. if(b.x<=this.x+12&&b.x>=this.x-12&&b.y>=this.y-30&&b.y<=this.y)
  4. {
  5. return true;
  6. }
  7. return false;
  8. }
Add Comment
Please, Sign In to add comment