comparison pytouhou/ui/opengl/texture.pxd @ 513:5e3e0b09a531

Move the OpenGL backend to its own package.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Thu, 05 Dec 2013 02:16:31 +0100
parents pytouhou/ui/texture.pxd@2e8ceaa85d5c
children dec43940f092
comparison
equal deleted inserted replaced
512:b39ad30c6620 513:5e3e0b09a531
1 from pytouhou.lib.sdl cimport Font
2
3 cdef class TextureManager:
4 cdef object loader, renderer, texture_class
5
6 cdef void load(self, dict anms) except *
7
8 cdef class FontManager:
9 cdef Font font
10 cdef object renderer, texture_class
11
12 cdef void load(self, list labels) except *