Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ///mouse_within( x1, y1, x2, y2 )
- // returns true if the mouse is within the specified area
- return ((mouse_x > argument0) && (mouse_x < argument2)) && ((mouse_y > argument1) && (mouse_y < argument3))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement