
import objeto; from objeto import Objeto

class ObjPeixe_IMP(Objeto):
  
  def __init__(self, x, y, z):
    Objeto.__init__(self, x, y)
    self.z = z
    
    
