comparison pytouhou/formats/animation.pxd @ 608:725bd24235a2

Make ANM0 pure-python again, by moving the Cython-dependent ANM class into its own module.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Wed, 26 Nov 2014 14:00:17 +0100
parents pytouhou/formats/anm0.pxd@43ecf0f98f4d
children
comparison
equal deleted inserted replaced
607:9dbc234ea087 608:725bd24235a2
1 cdef class Animation:
2 cdef public long version
3 cdef public unicode first_name, secondary_name
4 cdef public dict sprites, scripts
5 cdef public object texture
6
7 cdef double size_inv[2]