Mercurial > touhou
comparison pytouhou/game/enemy.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 | bcff39c920ab |
children | a0fa01cd9f70 |
comparison
equal
deleted
inserted
replaced
546:94dd9862c470 | 547:e35bef07290d |
---|---|
12 ## GNU General Public License for more details. | 12 ## GNU General Public License for more details. |
13 ## | 13 ## |
14 | 14 |
15 from libc.math cimport cos, sin, atan2, M_PI as pi | 15 from libc.math cimport cos, sin, atan2, M_PI as pi |
16 | 16 |
17 from pytouhou.vm.anmrunner import ANMRunner | 17 from pytouhou.vm import ANMRunner |
18 from pytouhou.game.sprite import Sprite | 18 from pytouhou.game.sprite import Sprite |
19 from pytouhou.game.bullet cimport Bullet, LAUNCHED | 19 from pytouhou.game.bullet cimport Bullet, LAUNCHED |
20 from pytouhou.game.laser cimport Laser, PlayerLaser | 20 from pytouhou.game.laser cimport Laser, PlayerLaser |
21 from pytouhou.game.effect cimport Effect | 21 from pytouhou.game.effect cimport Effect |
22 | 22 |