how to get a left mouse click in pygame code example
Example: pygame left click
if event.type == pygame.MOUSEBUTTONDOWN:
if event.button == 1:
print("Left Mouse Button Down!")
if event.type == pygame.MOUSEBUTTONDOWN:
if event.button == 1:
print("Left Mouse Button Down!")