view pytouhou/game/orb.pxd @ 474:ca22df9e70bc

Fix a crash when handling non-ascii paths
author Thibaut Girka <thib@sitedethib.com>
date Fri, 27 Sep 2013 18:02:04 +0200
parents 06f0eeb519bb
children 6be9c99a3a24
line wrap: on
line source

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

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

    cpdef update(self)