view 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
line wrap: on
line source

cdef class Animation:
    cdef public long version
    cdef public unicode first_name, secondary_name
    cdef public dict sprites, scripts
    cdef public object texture

    cdef double size_inv[2]