Delete main.py

This commit is contained in:
themixray 2021-11-02 13:24:29 +03:00 committed by GitHub
parent 258295e671
commit e87b3c276a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

22
main.py
View file

@ -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()