Add files via upload

This commit is contained in:
themixray 2021-12-13 21:52:18 +03:00 committed by GitHub
parent d6915bc901
commit 741ea4081f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 29 additions and 18 deletions

12
examples/template.py Normal file
View file

@ -0,0 +1,12 @@
import pygwin
win = pygwin.create('Title',(500,500))
run = True
while run:
for event in pygwin.getEvents():
if event.type == pygwin.QUIT:
run = False
win.update()
pygwin.close()