8 lines
166 B
Python
8 lines
166 B
Python
|
|
class Rectangle(object):
|
|
def __init__(self, x, y, width, height):
|
|
self.x = x
|
|
self.y = y
|
|
self.width = width
|
|
self.height = height
|
|
|