view pytouhou/ui/sdl/backend.pyx @ 572:7f113f15300b

Include the Glade file in the main package on install.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Wed, 09 Jul 2014 23:44:53 +0200
parents 8f51e34d911c
children 0768122da817
line wrap: on
line source

from pytouhou.lib cimport sdl
from pytouhou.lib.sdl cimport Window


GameRenderer = None


def init(_):
    global GameRenderer
    from pytouhou.ui.sdl.gamerenderer import GameRenderer


def create_window(title, x, y, width, height):
    window = Window(title, x, y, width, height, sdl.WINDOW_SHOWN)
    window.create_renderer(0)
    return window