view pytouhou/game/element.pxd @ 452:1f5156093785

By default, only enable fps limiting if vsync doesn't do the job.
author Thibaut Girka <thib@sitedethib.com>
date Fri, 30 Aug 2013 20:38:02 +0200
parents b9d2db93972f
children
line wrap: on
line source

from pytouhou.game.sprite cimport Sprite

cdef class Element:
    cdef public double x, y
    cdef public bint removed
    cdef public Sprite sprite
    cdef public list objects
    cdef public object anmrunner