SZI2019SmieciarzWmi/DataModels/House.py

7 lines
212 B
Python
Raw Normal View History

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