diff --git a/Flower.py b/Flower.py deleted file mode 100644 index 383f78ee..00000000 --- a/Flower.py +++ /dev/null @@ -1,15 +0,0 @@ -import random - -class PossibleFlower: - color = ['red', 'blue', 'yellow', 'white', 'pink'] - name = ['tulip', 'sunflower', 'rose', 'dandelion', 'daisy'] - -class Flower: - color = None - name = None - coordinates = [] - - def __init__(self, coordinates, color = PossibleFlower.color[random.randint(0, 4)], name = PossibleFlower.name[random.randint(0, 4)]): - self.color = color - self.name = name - self.coordinates = coordinates