import arcade from desktop_Platform import * def desktop_configureFixedWindow(p): p.cell = 25 p.windowAntialiasing = False p.windowHeight = 600 p.windowTitle = "OGS Memory" p.windowWidth = 900 #} def desktop_loadTextures(p): texs = [] for (id, td) in enumerate(p.c.textureDescriptions): tex = arcade.load_texture( td.fileName, x = td.x, y = td.y, width = td.width, height = td.height ) texs.append(tex) #} p.textures = texs #}