You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
476 B
19 lines
476 B
from typing import Any, Optional
|
|
|
|
from .byteio import ByteReader
|
|
|
|
|
|
class A2SProtocol:
|
|
@staticmethod
|
|
def serialize_request(challenge: int) -> bytes:
|
|
raise NotImplementedError()
|
|
|
|
@staticmethod
|
|
def validate_response_type(response_type: int) -> bool:
|
|
raise NotImplementedError()
|
|
|
|
@staticmethod
|
|
def deserialize_response(
|
|
reader: ByteReader, response_type: int, ping: Optional[float]
|
|
) -> Any:
|
|
raise NotImplementedError()
|
|
|