Commit 0753ad99 by BellCodeEditor

auto save

parent f349b1c3
Showing with 1 additions and 2 deletions
...@@ -61,7 +61,6 @@ def check(center): ...@@ -61,7 +61,6 @@ def check(center):
ll = [] ll = []
for i in range(25): for i in range(25):
ll.append([0] * 15) ll.append([0] * 15)
print(ll)
while True: while True:
for event in pygame.event.get(): for event in pygame.event.get():
...@@ -129,7 +128,7 @@ while True: ...@@ -129,7 +128,7 @@ while True:
pygame.draw.rect(screen, colors, pygame.draw.rect(screen, colors,
(j * 20-20, i * 20-20, 20, 20)) (j * 20-20, i * 20-20, 20, 20))
pygame.draw.rect(screen, colors, pygame.draw.rect(screen, colors,
(j * 20-20, i * 20-20, 20, 20), 1) (j * 20-20, i * 20-20, 20, 20), 0)
new_ll = [] new_ll = []
for i in range(25): for i in range(25):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment