comparison pytouhou/game/player.pyx @ 472:8038f1957b71

Type bullettype, itemtype and lasertype a bit.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Mon, 16 Sep 2013 18:42:04 +0200
parents 06f0eeb519bb
children 887de1309491
comparison
equal deleted inserted replaced
471:06f0eeb519bb 472:8038f1957b71
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.anmrunner import ANMRunner
19 from pytouhou.game.bullettype import 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 import LaserType 21 from pytouhou.game.lasertype cimport LaserType
22 from pytouhou.game.laser cimport PlayerLaser 22 from pytouhou.game.laser cimport PlayerLaser
23 23
24 24
25 class GameOver(Exception): 25 class GameOver(Exception):
26 pass 26 pass