Difficult-Rocket/try/others/muti_window.py

15 lines
284 B
Python

"""
writen by shenjackyuanjie
mail: 3695888@qq.com
github: @shenjackyuanjie
gitee: @shenjackyuanjie
"""
from libs import pyglet
a_w = pyglet.window.Window(width=400, height=400, resizable=True)
b_w = pyglet.window.Window(width=400, height=400, resizable=True)
pyglet.app.run()