5 lines
197 B
Python
5 lines
197 B
Python
from DataModels.Cell import Cell
|
|
|
|
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 ) |