view pytouhou/ui/glide/backend.py @ 776:94033091458b

formats: Update to ${concat(…)} to build on current nightly ${concat(…)} replaces the removed concat_idents!() macro, but doesn’t support being used in nested repetitions for now. We can remove the gen_match!() macro once this is supported again.
author Link Mauve <linkmauve@linkmauve.fr>
date Tue, 14 Oct 2025 12:41:29 +0000
parents 7492d384d122
children
line wrap: on
line source

from libtouhou import glide
from .window import Window

def create_window(title, posx, posy, width, height, frameskip):
    glide.create_window(title, posx, posy, width, height, frameskip)
    return Window()

init = glide.init
GameRenderer = glide.GameRenderer