Advertisement
Guest User

Untitled

a guest
May 24th, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1.  
  2. class Note(QObject):
  3.  
  4. move_mario = pyqtSignal(MoveEvent) #Señal para mover la imagen de mario en el frontend
  5.  
  6. def __init__(self, parent, x, y, texto):
  7. super().__init__()
  8. self.texto = texto
  9. self.move_mario.connect(parent.move_mario)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement