from Prop import Prop

class Portal(Prop):
	type = "portal"
	def __init__(self, rectangle, id, destination):
		Prop.__init__(self, rectangle, id)
		self.destination = destination

