comparison pytouhou/vm/eclrunner.py @ 362:3be4c1078095

(partially?) implement ECL's instruction 133
author Thibaut Girka <thib@sitedethib.com>
date Mon, 09 Jul 2012 21:12:10 +0200
parents b55939b4b40d
children b07e2f71f240
comparison
equal deleted inserted replaced
361:b55939b4b40d 362:3be4c1078095
1104 1104
1105 @instruction(132) 1105 @instruction(132)
1106 def set_invisible(self, value): 1106 def set_invisible(self, value):
1107 self._enemy.visible = not bool(value) 1107 self._enemy.visible = not bool(value)
1108 1108
1109
1110 @instruction(133)
1111 def copy_callbacks(self):
1112 self._enemy.timeout_callback = self._enemy.death_callback
1113