Files
rally-racer/src/bot.py
2025-10-24 20:43:41 +02:00

17 lines
349 B
Python

from __future__ import annotations
from typing import TYPE_CHECKING
from src.snapshot import Snapshot
if TYPE_CHECKING:
from src.recorder import RecorderWindow
class Bot:
def __init__(self, recorder: RecorderWindow):
self.recorder: RecorderWindow = recorder
def on_snapshot_received(self, snapshot: Snapshot):
pass