pytron-web/pytron_run/ai_manager/dummy/ai.py

12 lines
233 B
Python

"""An AI to try things"""
from tron.player import Player, Direction
class Ai(Player):
"""" A basic AI"""
def __init__(self):
super(Ai, self).__init__()
def action(self, map, id):
return Direction.RIGHT