change time that the x is on screen, made x thicker

This commit is contained in:
Nicholas Dyer 2023-02-19 15:31:53 -05:00
parent 8ce77656ae
commit f6ad2290bc

View File

@ -18,10 +18,10 @@ def main():
rainbow_pos = 0
window.fill((0, 0, 0))
pygame.draw.line(window, (255, 255, 255), (0, 0), (720, 720), 5)
pygame.draw.line(window, (255, 255, 255), (0, 720), (720, 0), 5)
pygame.draw.line(window, (255, 255, 255), (0, 0), (720, 720), 25)
pygame.draw.line(window, (255, 255, 255), (0, 720), (720, 0), 25)
pygame.display.flip()
time.sleep(1)
time.sleep(2)
running = True
while running: