#2 Animating mouth. /JL

This commit is contained in:
Jan Lerking
2025-04-14 09:26:12 +02:00
parent 4f8ffe3db7
commit bf1629406b
2 changed files with 24 additions and 6 deletions

View File

@@ -2,10 +2,12 @@ import pygame
from actors.enums import Colors
from actors.pacman import ActorPacman
__version__ = "0.0.2"
def main() -> None:
pygame.init()
screen = pygame.display.set_mode((800, 800))
pygame.display.set_caption("Pac-Man")
pygame.display.set_caption("Pac-Man " + __version__)
player = ActorPacman()