view pytouhou/game/orb.pxd @ 572:7f113f15300b

Include the Glade file in the main package on install.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Wed, 09 Jul 2014 23:44:53 +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)