Created
December 15, 2011 17:02
-
-
Save bil-bas/1481870 to your computer and use it in GitHub Desktop.
kyrylo patience
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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