Commit da131497 by BellCodeEditor

save project

parent 547968a8
Showing with 2 additions and 2 deletions
...@@ -51,9 +51,9 @@ while True: ...@@ -51,9 +51,9 @@ while True:
b.pop(0) b.pop(0)
screen.blit(background, (0, 0)) screen.blit(background, (0, 0))
# 将贪吃蛇画上去 # 将贪吃蛇画上去
screen.blit(right, (x,y)) screen.blit(ri, (x,y))
for i in range(len(b)-1): for i in range(len(b)-1):
screen.blit(right, (b[i])) screen.blit(ri, (b[i]))
# 将贪吃蛇的身体画上去 # 将贪吃蛇的身体画上去
# 将果实画上去 # 将果实画上去
......
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