view pytouhou/ui/opengl/texture.pxd @ 628:df3c4ef5f2cc

Partially revert 98603f2c32b4, as the creation of a .h file made some checking tools unhappy.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Sun, 19 Apr 2015 19:08:39 +0200
parents a6af3ff86612
children
line wrap: on
line source

from pytouhou.lib.sdl cimport Font

cdef class TextureManager:
    cdef object loader, renderer, texture_class

    cdef bint load(self, dict anms) except True

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

    cdef bint load(self, dict labels) except True