Skip to content

Instantly share code, notes, and snippets.

@TheNSNick
TheNSNick / Run.py
Created March 4, 2016 16:40
Card Game -- run file
# RUN FILE (Game loop)
#====================================================
# IMPORTS
#====================================================
import sys, os, random, pygame
from pygame.locals import *
from Classes import *
#====================================================
# INITIALIZATION
@TheNSNick
TheNSNick / Classes.py
Created March 4, 2016 16:40
Card Game -- classes
# python file containing classes for card games using PyGame
#======================================
# IMPORTS
#======================================
import sys, os, random, pygame
from pygame.locals import *
#======================================