pygwin2/README.md
2025-09-20 15:56:18 +03:00

24 lines
397 B
Markdown

# Pygwin2
A library for creating GUI-applications on pygame.
[Documentation](docs/DOCS.md)
## Usage
Here is a small example of usage (pygame style):
```py
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()
```