view pytouhou/game/orb.pxd @ 554:653a9f087673

Make both double- and single-buffer available on the CLI, but default to SDL’s default.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Fri, 30 May 2014 04:06:09 +0200
parents b32cef75df59
children
line wrap: on
line source

from pytouhou.game.element cimport Element
from pytouhou.game.sprite cimport Sprite

cdef class Orb(Element):
    cdef public double offset_x, offset_y
    cdef Element player
    cdef object fire

    cpdef update(self)