Created
October 31, 2015 11:47
-
-
Save stamaniorec/39c6077140cdab4f80ee to your computer and use it in GitHub Desktop.
#pygame initialize
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() | |
| game_display = pygame.display.set_mode((SCREEN_WIDTH,SCREEN_HEIGHT)) | |
| pygame.display.set_caption(GAME_CAPTION) | |
| pygame.quit() | |
| quit() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment