2019-09-03 14:54:42 -05:00
|
|
|
#Import libraries
|
|
|
|
from termcolor import colored
|
|
|
|
import sys
|
|
|
|
#Introduction
|
|
|
|
print(colored("<<connect4-2D.", 'red')+colored("p", 'blue')+colored("y", 'yellow'), colored("- Written by Caleb Fontenot>>", 'red'))
|
|
|
|
print("~~Experimental Version~~"+'\n')
|
|
|
|
|
|
|
|
#Import connectCore.py
|
|
|
|
import connectCore
|
|
|
|
print("Successfully imported connectCore!"+'\n')
|
|
|
|
#Import pygame
|
|
|
|
import pygame
|