view pytouhou/ui/opengl/texture.pxd @ 635:80687f258001

Make sdl.Window inherit from gui.Window, so we can swap implementations.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Thu, 14 Apr 2016 21:18:03 +0100
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