This file contains 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
""" | |
Hi Nick, I added some comments and stuff while you were teaching. | |
Hope you have less stressful sessions than I did! | |
- Andrew | |
""" | |
import pygame | |
screen = pygame.display.set_mode((256, 224)) | |
moving_right = False |
This file contains 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 | |
import random | |
pygame.init() | |
window = pygame.display.set_mode((420, 420)) | |
font = pygame.font.SysFont("Comic Sans", 20) | |
game_over = False |