8 lines
200 B
Python
8 lines
200 B
Python
from snakes.DummSnake import DummSnake
|
|
from snakes.LogicSnake import LogicSnake
|
|
from snakes.AStarSnake import AStarSnake
|
|
from snakes.MasterSnake import MasterSnake
|
|
|
|
SNAKE = MasterSnake()
|
|
DEBUG = True
|