aboutsummaryrefslogtreecommitdiff
path: root/gui.py
blob: f80a5f477e971fe15313d1fd8c8f65a95d4fa06e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import pygame, sys
from pygame.locals import *

pygame.init()

BLACK = (0,  0,  0)
GRAY = (99, 99, 99)
WHITE = (255, 255, 255)
WINDOW_HEIGHT = 400
WINDOW_WIDTH = 400
GRID_HEIGHT = 5
GRID_WIDTH = 4

displaySurface = pygame.display.set_mode((WINDOW_WIDTH, WINDOW_HEIGHT), 0, 32)
pygame.display.set_caption('Charlie Chunker GUI Ver. 0.1')

displaySurface.fill(GRAY)

while True:
    for event in pygame.event.get():
        if event.type == QUIT:
            pygame.quit()
            sys.exit()
    pygame.display.update()