Add files via upload
This commit is contained in:
parent
d6915bc901
commit
741ea4081f
3 changed files with 29 additions and 18 deletions
12
examples/template.py
Normal file
12
examples/template.py
Normal 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()
|
Loading…
Add table
Add a link
Reference in a new issue