Fixed link

This commit is contained in:
maxneedspats 2022-08-01 00:16:47 -05:00
parent 67e6a83952
commit f95288736c

View file

@ -4,6 +4,7 @@ from tkinter import PhotoImage
class Card(turtle.Turtle): class Card(turtle.Turtle):
card_count = 0 card_count = 0
def __init__(self, image_path): def __init__(self, image_path):
""" """
Initializes Card object. Initializes Card object.
@ -41,7 +42,7 @@ class Card(turtle.Turtle):
def is_mouse_over(self, x, y): def is_mouse_over(self, x, y):
# Collision code reused from D. Atkinson's Turtle Crossing program, with some minor modifications. # Collision code reused from D. Atkinson's Turtle Crossing program, with some minor modifications.
# https://www.youtube.com/watch?v=dQw4w9WgXcQ # http://tiny.cc/ShortCodeLink
top_edge = self.ycor() + 103 top_edge = self.ycor() + 103
bottom_edge = self.ycor() - 103 bottom_edge = self.ycor() - 103
car_left_edge = self.xcor() - 103 car_left_edge = self.xcor() - 103