Mercurial > touhou
comparison pytouhou/game/game.pyx @ 631:cd8a2baf468c
Move Particle to its own module, to not pollute pytouhou.game.effect.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Tue, 05 May 2015 14:49:22 +0200 |
parents | a6af3ff86612 |
children |
comparison
equal
deleted
inserted
replaced
630:6c40f5840a06 | 631:cd8a2baf468c |
---|---|
16 | 16 |
17 from pytouhou.game.element cimport Element | 17 from pytouhou.game.element cimport Element |
18 from pytouhou.game.bullet cimport Bullet, LAUNCHED, CANCELLED | 18 from pytouhou.game.bullet cimport Bullet, LAUNCHED, CANCELLED |
19 from pytouhou.game.enemy cimport Enemy | 19 from pytouhou.game.enemy cimport Enemy |
20 from pytouhou.game.item cimport Item | 20 from pytouhou.game.item cimport Item |
21 from pytouhou.game.effect cimport Particle | 21 from pytouhou.game.particle cimport Particle |
22 from pytouhou.game.laser cimport Laser, PlayerLaser | 22 from pytouhou.game.laser cimport Laser, PlayerLaser |
23 from pytouhou.game.face import Face | 23 from pytouhou.game.face import Face |
24 | 24 |
25 | 25 |
26 cdef class Game: | 26 cdef class Game: |