feat: начало работы над SessionInput

This commit is contained in:
2026-08-14 03:16:24 +03:00
parent bc5ae5394c
commit ac7a841d05
2 changed files with 19 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
from .session_input import SessionInput
__all__ = ["SessionInput"]
+16
View File
@@ -0,0 +1,16 @@
from mind_reader.app_context import SessionContext
from mind_reader.domain import ArrowDirection
class SessionInput:
def __init__(self, context: SessionContext):
self._context = context
def start_session(self) -> None:
pass
def make_local_move(self, direction: ArrowDirection) -> bool:
pass
def finish_session(self) -> None:
pass