Mercurial > touhou
comparison pytouhou/game/player.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 | db28538cd399 |
children | 94229756abd9 |
comparison
equal
deleted
inserted
replaced
546:94dd9862c470 | 547:e35bef07290d |
---|---|
13 ## | 13 ## |
14 | 14 |
15 from libc.math cimport M_PI as pi | 15 from libc.math cimport M_PI as pi |
16 | 16 |
17 from pytouhou.game.sprite cimport Sprite | 17 from pytouhou.game.sprite cimport Sprite |
18 from pytouhou.vm.anmrunner import ANMRunner | 18 from pytouhou.vm import ANMRunner |
19 from pytouhou.game.bullettype cimport BulletType | 19 from pytouhou.game.bullettype cimport BulletType |
20 from pytouhou.game.bullet cimport Bullet | 20 from pytouhou.game.bullet cimport Bullet |
21 from pytouhou.game.lasertype cimport LaserType | 21 from pytouhou.game.lasertype cimport LaserType |
22 from pytouhou.game.laser cimport PlayerLaser | 22 from pytouhou.game.laser cimport PlayerLaser |
23 | 23 |