Mercurial > touhou
view pytouhou/ui/sdl/backend.pyx @ 722:e71ea8214ee2
ecl_vm: some work on vampire fantasy
author | Gauvain "GovanifY" Roussel-Tarbouriech <gauvain@govanify.com> |
---|---|
date | Mon, 28 Oct 2019 21:19:50 +0100 |
parents | 80687f258001 |
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