feat: начало работы над SessionInput
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
from .session_input import SessionInput
|
||||
|
||||
__all__ = ["SessionInput"]
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user