file naming changes

This commit is contained in:
Veronika Polevara 2023-03-12 14:09:55 +01:00
parent acce6f6bd1
commit 645aa663e3
3 changed files with 0 additions and 22 deletions

View File

@ -1 +0,0 @@
from .interface import *

View File

@ -1,21 +0,0 @@
import sys
import pygame
from .helpers import *
def initialize_interface(tiles_x, tiles_y):
size = width, height = 800, 800
screen = create_screen(size)
pygame.display.set_caption('Epic AI Vacuum Cleaner')
while True:
for event in pygame.event.get():
if event.type == pygame.QUIT:
sys.exit()
screen.fill(BLACK)
# rect(screen, WHITE, 50,50,90,90)
draw_board(screen, WHITE, width, height, tiles_x, tiles_y)
pygame.display.flip()