From 5bc9bcee7779c43b5776ee66f03c7ba3195701b8 Mon Sep 17 00:00:00 2001 From: Boris Ibragimov <44411568+tadaborisu@users.noreply.github.com> Date: Fri, 4 Dec 2020 02:34:06 +0300 Subject: [PATCH] Delete blackscreen.py --- blackscreen.py | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 blackscreen.py diff --git a/blackscreen.py b/blackscreen.py deleted file mode 100644 index 9b909f8..0000000 --- a/blackscreen.py +++ /dev/null @@ -1,16 +0,0 @@ -import pygame -from win32api import GetSystemMetrics - -pygame.init() -pygame.display.set_caption('Blackscreen by tadaborisu') -gameIcon = pygame.image.load('icon.ico') -pygame.display.set_icon(gameIcon) -screen = pygame.display.set_mode((GetSystemMetrics(0), GetSystemMetrics(1)), pygame.NOFRAME) - -Running = True -while Running: - screen.fill((0, 0, 0)) - for event in pygame.event.get(): - if event.type == pygame.QUIT: - Running = False - \ No newline at end of file