Собрали в одном месте самые важные ссылки
читайте авторский блог
class MyApp(sdl2ui.App): width = 256 height = 224 zoom = 3 # NOTE: the fps you desire: less fps = less CPU usage fps = 30 name = "My Application" # NOTE: order the handlers in what you want to display first default_handlers = [MainHandler, ListSelectorHandler, MenuHandler] default_resources = [('background', 'background.png')] logging.basicConfig(level=logging.DEBUG) app = Meldnafen(handlers=[sdl2ui.handler.DebuggerHandler]) app.loop() del app