Класс Wall
Свойства класса:
x
, y
- положение
width
, height
- размеры
color
- цвет
Метод класса:
class Wall:
def __init__(self, x, y, width, height, color):
self.x = x
self.y = y
self.width = width
self.height = height
self.color = color
self.player_surface = pygame.Surface((self.width, self.height))
self.player_surface.fill(self.color)
def update(self):
screen.blit(self.player_surface, (self.x, self.y))
Задание: с помощью экземпляров класса нужно создать лабиринт.