comparison pytouhou/game/sprite.pxd @ 628:df3c4ef5f2cc

Partially revert 98603f2c32b4, as the creation of a .h file made some checking tools unhappy.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Sun, 19 Apr 2015 19:08:39 +0200
parents 98603f2c32b4
children
comparison
equal deleted inserted replaced
627:ec972eb44391 628:df3c4ef5f2cc
1 from pytouhou.utils.interpolator cimport Interpolator 1 from pytouhou.utils.interpolator cimport Interpolator
2 from pytouhou.formats.animation cimport Animation 2 from pytouhou.formats.animation cimport Animation
3 3
4 cdef public class Sprite[object Sprite, type SpriteType]: 4 cdef class Sprite:
5 cdef public int blendfunc, frame 5 cdef public int blendfunc, frame
6 cdef public float width_override, height_override, angle 6 cdef public float width_override, height_override, angle
7 cdef public bint removed, changed, visible, force_rotation 7 cdef public bint removed, changed, visible, force_rotation
8 cdef public bint automatic_orientation, allow_dest_offset, mirrored 8 cdef public bint automatic_orientation, allow_dest_offset, mirrored
9 cdef public bint corner_relative_placement 9 cdef public bint corner_relative_placement