Files
snake-python/snakes/TemplateSnake.py
T

16 lines
286 B
Python

class TemplateSnake:
def __init__(self):
self.history = []
def clear_history(self):
self.history = []
def add_to_history(self, data:dict):
self.history.append(data)
def get_history(self):
return self.history
def choose_move(self, game_data:dict):
pass