Advertisement
Guest User

Untitled

a guest
Feb 16th, 2020
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. bool FindPoint(int x1, int y1, int x2,
  2. int y2, int x, int y)
  3. {
  4. if (x > x1 and x < x2 and y > y1 and y < y2)
  5. return true;
  6.  
  7. return false;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement