first commit

This commit is contained in:
emil
2024-10-12 08:06:45 +03:00
commit 4d2e2bb52b
4 changed files with 84 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import pygame as pg
from map import *
cell = Cell(coordinates=np.array([50,50]))
running = True
while (running):
for event in pg.event.get():
if event.type == pg.QUIT:
running = False
screen.fill('BLACK')
cell.draw()