comparison pytouhou/game/effect.pyx @ 547:e35bef07290d

Always import runners from pytouhou.vm, to allow their replacement.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Fri, 08 Nov 2013 18:47:00 +0100
parents 292fea5c584e
children cd8a2baf468c
comparison
equal deleted inserted replaced
546:94dd9862c470 547:e35bef07290d
11 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 ## GNU General Public License for more details. 12 ## GNU General Public License for more details.
13 ## 13 ##
14 14
15 from pytouhou.game.sprite cimport Sprite 15 from pytouhou.game.sprite cimport Sprite
16 from pytouhou.vm.anmrunner import ANMRunner 16 from pytouhou.vm import ANMRunner
17 17
18 from pytouhou.game.game cimport Game 18 from pytouhou.game.game cimport Game
19 19
20 20
21 cdef class Effect(Element): 21 cdef class Effect(Element):