Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import pygame
- import sys
- from Level_1 import main_1
- from Level_2 import main_2
- WIDTH, HEIGHT = 1000, 800
- window = pygame.display.set_mode((WIDTH, HEIGHT), pygame.RESIZABLE)
- if __name__ == "__main__":
- main_1(window)
- main_2(window)
- pygame.quit()
- sys.exit()
Advertisement
Add Comment
Please, Sign In to add comment