AL-2020/shelf.py
2020-05-18 17:33:48 +02:00

12 lines
176 B
Python

import pygame
class Shelf:
def __init__(self, id):
self.id = id
self.products = []
def addProduct(self, sweet):
self.products.append(sweet)