7 lines
223 B
Python
7 lines
223 B
Python
from rectangle import Rectangle
|
|
|
|
class GameRectangle(Rectangle):
|
|
def __init__(self, index, x, y, width, height):
|
|
self.index = index
|
|
self.state = ' '
|
|
Rectangle.__init__(self, x, y, width, height)
|