A library for creating GUI-applications on pygame.
docs | ||
examples | ||
src/pygwin2 | ||
.gitignore | ||
LICENSE | ||
pyproject.toml | ||
README.md |
Pygwin2
A library for creating GUI-applications on pygame.
Usage
Here is a small example of usage (pygame style):
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()