From 0a76c2b82620512d4751a357a05154175e6977b2 Mon Sep 17 00:00:00 2001 From: Michal Kijowski Date: Thu, 26 Mar 2020 21:08:02 +0000 Subject: [PATCH] =?UTF-8?q?Usu=C5=84=20'floor.py'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- floor.py | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 floor.py diff --git a/floor.py b/floor.py deleted file mode 100644 index 576bef8..0000000 --- a/floor.py +++ /dev/null @@ -1,12 +0,0 @@ -import pygame - -class Floor: - def __init__(self, screen, cell, we, ns): - self.cell = cell - self.ns = ns - self.we = we - self.screen = screen - self.image = pygame.image.load(r'images/po.png') - self.image = pygame.transform.scale(self.image, (cell, cell)) - def draw(self): - self.screen.blit(self.image, (self.cell*self.ns, self.cell*self.we)) \ No newline at end of file