forked from s444399/AI
Delete 'boxOnTheFloor.py'
This commit is contained in:
parent
ad6bc77f57
commit
5506ff1030
@ -1,16 +0,0 @@
|
||||
import pygame
|
||||
|
||||
class BoxOnTheFloor:
|
||||
def __init__(self, screen, cell, we, ns, box):
|
||||
self.cell = cell
|
||||
self.ns = ns
|
||||
self.occupied = True
|
||||
self.box = box
|
||||
self.we = we
|
||||
self.screen = screen
|
||||
self.image = pygame.image.load(r'images/pa.png')
|
||||
self.image = pygame.transform.scale(self.image, (cell, cell))
|
||||
def get(self):
|
||||
return self.box
|
||||
def draw(self):
|
||||
self.screen.blit(self.image, (self.cell*self.ns, self.cell*self.we))
|
Loading…
Reference in New Issue
Block a user