9 lines
179 B
Python
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
|