""" ----------------------------------------- Project: Escape Drake Standard: 91896 (2.7) School: Tauranga Boys' Collage Auther: Hunter Moss Date: May 2024 Python: 3.11.2 ----------------------------------------- """ #Imports import pygame from pygame.locals import * pygame.init() #Screen Size screen_width = 1000 screen_height = 1000 screen = pygame.display.set_mode((screen_width,screen_height)) pygame.display.set_caption('Escape Drake') #GAME VERABLES tile_size = 50 game_over = 0 main_menu = True level = 1 max_levels = 3 #load images run = True while run: for event in pygame.event.get(): if event.type == pygame.QUIT: run = False pygame.quit()