8 lines
239 B
Python
8 lines
239 B
Python
|
import pygame
|
||
|
from DataModels.Cell import Cell
|
||
|
|
||
|
class Dump( Cell ):
|
||
|
def __init__( self, x, y, max_rubbish, dump_type, yellow = 0, green = 0, blue = 0 ):
|
||
|
Cell.__init__( self, x, y, max_rubbish, yellow, green, blue, dump_type )
|
||
|
|