Forked from
asghar / se3xa3
90 commits ahead of the upstream repository.
-
Hameed Andy authoredHameed Andy authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
init.py 389 B
## @file Colors.py
# @author Andy Hameed
# @brief Define color constants
# @date 11/09/2018
import pygame
#initializing PyGame and setting game window dimensions
pygame.init()
screenSize = 500
win = pygame.display.set_mode((screenSize,screenSize))
pygame.display.set_caption("Snake 2.o")
#Define color constants
white = (255,255,255)
red = (255,0,0)
blue = (0,0,255)
black = (0,0,0)