view pytouhou/game/orb.pxd @ 543:fb837b32c3dd

Automatically fallback on the SDL renderer if the OpenGL one can’t be imported.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Sat, 10 May 2014 23:40:13 +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)