diff --git a/pypong/game_files/__init__.py b/pypong/game_files/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/pypong/game_files/game.py b/pypong/game_files/game.py new file mode 100644 index 0000000..5140621 --- /dev/null +++ b/pypong/game_files/game.py @@ -0,0 +1,19 @@ +import pygame + +SCREEN_SIZE = (640, 480) # Size of the game window + + +def game(): + pygame.init() + + window = pygame.display.set_mode(SCREEN_SIZE) + surface = pygame.Surface(SCREEN_SIZE) + + running = True + + while running: + pygame.display.flip() + + +def main(): + game()