コード例 #1
0
 def makeHooks(self):
     ants.Insect.reduce_armor = utils.class_method_wrapper(
         ants.Insect.reduce_armor, post=dead_insects)
     ants.FireAnt.reduce_armor = utils.class_method_wrapper(
         ants.FireAnt.reduce_armor, post=dead_insects)
     ants.AntColony.remove_ant = utils.class_method_wrapper(
         ants.AntColony.remove_ant, post=removed_ant)
コード例 #2
0
ファイル: gui.py プロジェクト: cedricholz/My-Repository
 def makeHooks(self):
     ants.Insect.reduce_armor = utils.class_method_wrapper(ants.Insect.reduce_armor, post=dead_insects)
     ants.AntColony.remove_ant = utils.class_method_wrapper(ants.AntColony.remove_ant, post=removed_ant)