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
# RUN FILE (Game loop) | |
#==================================================== | |
# IMPORTS | |
#==================================================== | |
import sys, os, random, pygame | |
from pygame.locals import * | |
from Classes import * | |
#==================================================== | |
# INITIALIZATION |
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
# python file containing classes for card games using PyGame | |
#====================================== | |
# IMPORTS | |
#====================================== | |
import sys, os, random, pygame | |
from pygame.locals import * | |
#====================================== |