2019-03-19 16:44:34 +01:00

9 lines
179 B
Python

from tron.player import Player, Direction
class Ai(Player):
def __init__(self):
super(Ai, self).__init__()
def action(self, game):
return Direction.LEFT