import inanimate,display, pygame, block

class Teleportblock (block.Block,inanimate.inanimate):
    "tele"
    def __init__(self,location):
        self.image = pygame.transform.scale(pygame.image.load("teleportblock.png"),(32,32))
        self.location = location

        
