Source code for bot_api.events.hit_wall_event

from dataclasses import dataclass

from .bot_event import BotEvent


[docs] @dataclass(frozen=True, repr=True) class HitWallEvent(BotEvent): """ Event occurring when your bot has hit a wall. """ pass