pygame_wrap_class #1

Merged
s473555 merged 5 commits from pygame_wrap_class into main 2023-03-12 16:32:16 +01:00
2 changed files with 12 additions and 12 deletions
Showing only changes of commit 963f2da849 - Show all commits

View File

@ -1,8 +1,10 @@
from grid_draw import GridDraw, Colors from Interface.grid_draw import GridDraw, Colors
grid = GridDraw(500, 500) # dummy function
def initial_draw():
grid = GridDraw(500, 500)
while True: while True:
grid.start_draw() grid.start_draw()
grid.board(10, 10) grid.board(10, 10)

View File

@ -1,5 +1,3 @@
import pygame from Interface.vacuum_render import initial_draw
from Interface import initialize_interface
pygame.init() initial_draw()
initialize_interface(10, 10)