Files
TheMatrixUniverse/main.py
T
2024-10-12 08:06:45 +03:00

14 lines
256 B
Python

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()