Skip to content

Instantly share code, notes, and snippets.

View MarquisLP's full-sized avatar
🎈
To far away times!

Mark Padilla MarquisLP

🎈
To far away times!
  • Toronto, Ontario
View GitHub Profile
@MarquisLP
MarquisLP / pygame_test.py
Last active December 3, 2022 17:50
A simple game loop for testing PyGame code.
"""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.