comparison pytouhou/ui/texture.pxd @ 505:bfea9e9a6845

Manage the texture-specific indices in the Texture, and some more renderer optimisations.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Fri, 01 Nov 2013 14:45:53 +0100
parents
children 2e8ceaa85d5c
comparison
equal deleted inserted replaced
504:69c73023f7a0 505:bfea9e9a6845
1 from pytouhou.lib.sdl cimport Font
2
3 cdef class TextureManager:
4 cdef object loader, renderer, texture_class
5
6 cdef load(self, dict anms)
7
8 cdef class FontManager:
9 cdef Font font
10 cdef object renderer, texture_class
11
12 cdef load(self, list labels)