view pytouhou/ui/sdl/gamerenderer.pxd @ 615:d1f0bb0b7a17

Don’t inherit explicitely from object, we are not on Python 2.7 anymore. :)
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Sat, 28 Mar 2015 21:40:51 +0100
parents b895ed2de71f
children a6af3ff86612
line wrap: on
line source

from pytouhou.game.game cimport Game
from .texture cimport TextureManager, FontManager
from .sprite cimport get_sprite_rendering_data
from pytouhou.ui.window cimport Window

cdef class GameRenderer:
    cdef Window window
    cdef TextureManager texture_manager
    cdef FontManager font_manager
    cdef long x, y, width, height

    cdef public size #XXX

    cdef void render_game(self, Game game) except *
    cdef void render_text(self, texts) except *
    cdef void render_interface(self, interface, game_boss) except *