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

499 B

Pygwin2

A library for creating GUI-applications on pygame.

Documentation

Usage

Here is a small example of usage (pygame style):

import pygwin2 as pgw

win = pgw.create('Title',(500,500))

run = True
while run:
    for event in pgw.getEvents():
        if event.type == pgw.QUIT:
            run = False

    win.update()
pgw.close()

Installation

pip install pygwin2