7 lines
243 B
Python
7 lines
243 B
Python
from autopilot import AutoPilot, RandomPilot
|
||
from simulator import Simulator
|
||
|
||
# Создаем симулятор с AutoPilot для обработки изображений
|
||
simulator = Simulator(RandomPilot(), AutoPilot())
|
||
simulator.loop()
|