''' ------------------------------------------------- Project : PlatFormer Standard : 91896 School : Tauranga Boy's College Author : Hayden De Rohan Date : 29/04/2025 Python : 3.11.9 ------------------------------------------------- ''' import pygame import sys import pygame, sys from settings import * from Player import PlayerClass #constants FPS = 60 #Pygame pygame.init() Screen = pygame.display.set_mode((S_W, S_H)) Clock = pygame.time.Clock() #Player Player = PlayerClass(200, 200, 1.65) running = True while running: Screen.fill("white") #Draw Player.draw(Screen) pygame.draw.line(Screen, "red", (0, S_H - 80), (S_W, S_H - 80), 4) for event in pygame.event.get(): if event.type == pygame.QUIT: running = False pygame.display.update() Clock.tick(FPS) pygame.quit() sys.exit()