From e87b3c276a946c7335a39a6a82410f2480c58c27 Mon Sep 17 00:00:00 2001 From: themixray <35273590+themixray@users.noreply.github.com> Date: Tue, 2 Nov 2021 13:24:29 +0300 Subject: [PATCH] Delete main.py --- main.py | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 main.py diff --git a/main.py b/main.py deleted file mode 100644 index 63b8e49..0000000 --- a/main.py +++ /dev/null @@ -1,22 +0,0 @@ -import pygwin -import random - -win = pygwin.create(size=(500,500)) - -font = pygwin.defaultFont - -run = True -while run: - for event in pygwin.getEvents(): - if event.type == pygwin.QUIT: - run = False - win.fill((255,255,255)) - - text = font.render(win.fps, 25, (0,0,0)) - text = pygwin.image.toString(text) - win.blit(text,(0,0)) - text = pygwin.image.fromString(text) - win.blit(text,(0,50)) - - win.update(60) -pygwin.close()