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
"""This module contains all of the necessary PyGame components for | |
running a simplified game loop. | |
Use it for test cases on PyGame-related code. | |
""" | |
import sys | |
import pygame | |
from pygame.locals import * | |
# Import additional modules here. | |