Mercurial > touhou
view pytouhou/ui/sdl/backend.pyx @ 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 | 0768122da817 |
children |
line wrap: on
line source
cimport pytouhou.lib.sdl as 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