11 lines
236 B
Python
11 lines
236 B
Python
|
import pygame
|
||
|
|
||
|
from config import WINDOW_HEIGHT, WINDOW_WIDTH
|
||
|
|
||
|
pygame_sprites = pygame.sprite.Group()
|
||
|
|
||
|
FPS_CLOCK = pygame.time.Clock()
|
||
|
GAME_WINDOW = display.set_mode((WINDOW_WIDTH, WINDOW_HEIGHT), 0, 32)
|
||
|
|
||
|
grid = [ [] for x in range(0)]
|