Created
March 1, 2018 10:29
-
-
Save illume/b87911469c4e59db387defa09118fff3 to your computer and use it in GitHub Desktop.
See if there are weird mouse coordinates in the corners?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pygame | |
pygame.init() | |
pygame.display.set_mode((500, 400), 0, 32) | |
while True: | |
for event in pygame.event.get(): | |
print(event) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment