Skip to content

Instantly share code, notes, and snippets.

@bil-bas
Created December 15, 2011 17:02
Show Gist options
  • Save bil-bas/1481870 to your computer and use it in GitHub Desktop.
Save bil-bas/1481870 to your computer and use it in GitHub Desktop.
kyrylo patience
always do
on :mouse_press do
@clicked_card = @deck.cards.find { |card| card.received_click?(mouse_pos) }
end
on :mouse_release do
@clicked_card = nil
end
@clicked_card.drag(mouse_pos) if @clicked_card
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment