view pytouhou/game/orb.pxd @ 634:5270c34b4c00

Use the number of cores available for parallel compilation, instead of an hardcoded 4 threads.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Thu, 09 Jul 2015 22:18:30 +0100
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)