added multiple lines

This commit is contained in:
Nicholas Dyer 2023-02-19 16:39:24 -05:00
parent b246e05d79
commit 9fd904583c
No known key found for this signature in database
GPG Key ID: E4E6388793FA2105

View File

@ -26,7 +26,10 @@ def main(windowed_mode):
mouse_pos = pygame.mouse.get_pos()
window.fill((0, 0, 0))
pygame.draw.line(window, (255, 255, 255), (720/2, 720/2), mouse_pos, 15)
pygame.draw.line(window, (255, 255, 255), (0, 0), mouse_pos, 10)
pygame.draw.line(window, (255, 255, 255), (0, 720), mouse_pos, 10)
pygame.draw.line(window, (255, 255, 255), (720, 720), mouse_pos, 10)
pygame.draw.line(window, (255, 255, 255), (720, 0), mouse_pos, 10)
pygame.display.flip()