Guest User

Untitled

a guest
Jul 18th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. class Array
  2. def each_collision(*args)
  3. each do |item|
  4. item.each_collision(*args) do |o, o2|
  5. yield o, o2
  6. end
  7. end
  8. end
  9. end
Add Comment
Please, Sign In to add comment