2
0
forked from s444420/AL-2020
AL-2020/shelf.py
2020-05-18 17:24:03 +02:00

13 lines
210 B
Python

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