Files
snake-python/snakes/TemplateSnake.py
T
daniel156161 7acc269df4 main (#1)
Reviewed-on: #1
Co-authored-by: Daniel Dolezal <d.dolezal97@protonmail.com>
Co-committed-by: Daniel Dolezal <d.dolezal97@protonmail.com>
2024-04-13 03:03:09 +02:00

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