snake/apple.py
Billts_noo 4738b5c4ff 上传文件至 /
搓了一个充满bug的算法框架
2024-08-14 12:30:17 +08:00

11 lines
377 B
Python

import random
class Apple():
def __init__(self,settings):
self.x = 7#random.randint(1, settings.cell_w - 1)
self.y = 5#random.randint(1, settings.cell_h - 1)
self.coords = {'x':self.x,'y':self.y}
def spawn(self,settings):
self.x = random.randint(1, settings.cell_w - 1)
self.y = random.randint(1, settings.cell_h - 1)