view pytouhou/game/effect.pxd @ 606:3c2f96f1d715

Fix compilation under Cython 0.22, by making the pyx and the pxd declarations’ except clause similar.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Wed, 26 Nov 2014 13:36:38 +0100
parents cae83b963695
children cd8a2baf468c
line wrap: on
line source

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)