SZI2019SmieciarzWmi/DataModels/GC.py
2019-04-01 14:32:24 +02:00

12 lines
246 B
Python

from DataModels.Cell import Cell
from DataModels.House import House
class GC( Cell ):
def __init__( self, x, y, max_rubbish, yellow = 0, green = 0, blue = 0):
Cell.__init__(self, x, y, max_rubbish, yellow, green, blue )