Commit f935cb8f by BellCodeEditor

save project

parent a47857d8
Showing with 2 additions and 2 deletions
......@@ -90,7 +90,7 @@ while True:
if check(center) == False:
index = old_index
current_shape = shape[index]
if gameover = False:
if gameover == False:
if states == False:
states = True
center = [2, 8] # 第2行第8列
......@@ -150,7 +150,7 @@ while True:
# 得分
text_surface = font.render(str(score), True, (0, 0, 0))
screen.blit(text_surface, (350,70))
if gameover = True:
if gameover == True:
text = font_restart.render("Gameover,You are low!!! :)",True,(0,0,0))
screen.blit(text, (20,250))
......
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