8 lines
196 B
Python
8 lines
196 B
Python
from Package import Package
|
|
|
|
|
|
class Placed_package(Package):
|
|
def __init__(self, package):
|
|
Package.__init__(self, package.window, package.x, package.y)
|
|
self.type = package.type
|