comparison pytouhou/game/element.pxd @ 440:b9d2db93972f

Add a base Element class for every object in pytouhou.game.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Fri, 30 Aug 2013 14:16:08 +0200
parents
children
comparison
equal deleted inserted replaced
439:723a3e67a223 440:b9d2db93972f
1 from pytouhou.game.sprite cimport Sprite
2
3 cdef class Element:
4 cdef public double x, y
5 cdef public bint removed
6 cdef public Sprite sprite
7 cdef public list objects
8 cdef public object anmrunner