7 lines
127 B
Python
7 lines
127 B
Python
from typing import Protocol
|
|
|
|
|
|
class SendGameStateInterface(Protocol):
|
|
async def send_game_state(self) -> None:
|
|
...
|