Delete 'wall.py'

This commit is contained in:
Michal Kijowski 2020-04-28 10:16:19 +00:00
parent 198764fc01
commit 2e195c8bb3

12
wall.py
View File

@ -1,12 +0,0 @@
import pygame
class Wall:
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/sc.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))