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

12 lines
230 B
Python
Raw Normal View History

2019-03-26 11:17:09 +01:00
"""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, game):
return Direction.RIGHT