diff pytouhou/game/effect.pxd @ 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 cae83b963695
children
line wrap: on
line diff
--- a/pytouhou/game/effect.pxd
+++ b/pytouhou/game/effect.pxd
@@ -1,12 +1,4 @@
 from pytouhou.game.element cimport Element
-from pytouhou.utils.interpolator cimport Interpolator
 
 cdef class Effect(Element):
     cpdef update(self)
-
-
-cdef class Particle(Effect):
-    cdef long frame, duration
-    cdef Interpolator pos_interpolator
-
-    cpdef update(self)