import pygame

imporе pygame

WIDTH = 480  # Ширина игрового окна
HEIGHT = 600  # Высота
FPS = 60  # Кадры в секунду

WHITE = (255, 255, 255)  # Белый
BLACK = (0, 0, 0)  # Черный
RED = (255, 0, 0)  # Красный
GREEN = (0, 255, 0)  # Зеленый
BLUE = (0, 0, 255)  # Синий
VIOLET = (238, 130, 238)  # Цвет на выбор
OLIVE = (128, 128, 0) #оливье
STEELBLUE = (70, 130, 180) #блевония

pygame.init()
pygame.mixer.init()
screen = pygame.display.set_mode((WIDTH, HEIGHT))
pygame.display.set_caption("чичигага")
clock = pygame.time.Clock

snake_block = 10
snake_speed = 15

class Snake(pygame.sprite.Sprite):
    def __init__(self):
        super().__init__()
        self.image = pygame.Surface((snake_block,snake_block))
        self.image.fill(STEELBLUE)
        self.image = self.image.get_rect()
        self.rect.x = WIDTH/2
        self.rect.y = HEIGHT/2
        self.dx = 0
        self.dy = 0
        self.body = []
        self.lenght = 1
        self.score = 0



#clock = pygame.time.Clock()
all_sprites = pygame.sprite.Group()
player = Player()
all_sprites.add(player)


class Player(pygame.sprite.Sprite)











running = True
while running:

    clock.tick(FPS)

    for event in pygame.event.get():
        if event.type == pygame.QUIT
            running = False
    all_sprites.update()




    screen.fill(WHITE)
    all_sprites.draw(screen)
    pygame.display.flip()


pygame.quit()