Difficult-Rocket/tests/muti_window.py

15 lines
284 B
Python
Raw Normal View History

2021-11-04 22:35:09 +08:00
"""
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()