diff pytouhou/formats/anm0.pxd @ 525:43ecf0f98f4d

Precalculate the inverse of the texture size at ANM load, to not recalculate at every sprite change.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Wed, 18 Dec 2013 18:15:45 +0100
parents
children
line wrap: on
line diff
new file mode 100644
--- /dev/null
+++ b/pytouhou/formats/anm0.pxd
@@ -0,0 +1,7 @@
+cdef class ANM:
+    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]