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

from pytouhou.lib.sdl cimport Font

cdef class TextureManager:
    cdef object loader, renderer, texture_class

    cdef load(self, dict anms)

cdef class FontManager:
    cdef Font font
    cdef object renderer, texture_class

    cdef load(self, list labels)