Minor changes
This commit is contained in:
parent
cee495b600
commit
aa38f15005
1 changed files with 7 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
#!/usr/bin/env python
|
||||
import sys, pygame
|
||||
import sys, pygame, random
|
||||
|
||||
|
||||
class Snake:
|
||||
|
@ -18,6 +18,12 @@ class Snake:
|
|||
rect=pygame.Rect(self.grid_pts*x, self.grid_pts*y, self.grid_pts, self.grid_pts)
|
||||
pygame.draw.rect(self.screen,color,rect, 0)
|
||||
|
||||
|
||||
def new_apple(self):
|
||||
self.apple=(random.randint(0,grid_width),random.randint(0,grid_height))
|
||||
while self.apple in self.snake:
|
||||
self.apple=(random.randint(0,grid_width),random.randint(0,grid_height))
|
||||
|
||||
def move(self):
|
||||
# Update tail
|
||||
if len(self.snake)>1:
|
||||
|
|
Loading…
Add table
Reference in a new issue