view pytouhou/game/particle.pxd @ 649:967627181a76

Use the merged name of RGB in AnmRenderer. See https://github.com/phaazon/luminance-rs/pull/150 for reasoning.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Thu, 08 Aug 2019 13:39:28 +0200
parents cd8a2baf468c
children
line wrap: on
line source

from pytouhou.game.effect cimport Effect
from pytouhou.utils.interpolator cimport Interpolator

cdef class Particle(Effect):
    cdef long frame, duration
    cdef Interpolator pos_interpolator

    cpdef update(self)